1. /*
  2. * @(#)RelationException.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. import javax.management.JMException;
  9. /**
  10. * This class is the superclass of any exception which can be raised during
  11. * relation management.
  12. *
  13. * @since 1.5
  14. */
  15. public class RelationException extends JMException {
  16. /* Serial version */
  17. private static final long serialVersionUID = 5434016005679159613L;
  18. /**
  19. * Default constructor, no message put in exception.
  20. */
  21. public RelationException() {
  22. super();
  23. }
  24. /**
  25. * Constructor with given message put in exception.
  26. *
  27. * @param message the detail message.
  28. */
  29. public RelationException(String message) {
  30. super(message);
  31. }
  32. }