1. /*
  2. * @(#)InvalidRelationServiceException.java 1.15 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.management.relation;
  8. /**
  9. * This exception is raised when an invalid Relation Service is provided.
  10. *
  11. * @since 1.5
  12. */
  13. public class InvalidRelationServiceException extends RelationException {
  14. /* Serial version */
  15. private static final long serialVersionUID = 3400722103759507559L;
  16. /**
  17. * Default constructor, no message put in exception.
  18. */
  19. public InvalidRelationServiceException() {
  20. super();
  21. }
  22. /**
  23. * Constructor with given message put in exception.
  24. *
  25. * @param message the detail message.
  26. */
  27. public InvalidRelationServiceException(String message) {
  28. super(message);
  29. }
  30. }