1. /*
  2. * @(#)InvalidRelationIdException.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 relation id provided for a relation is already
  10. * used.
  11. *
  12. * @since 1.5
  13. */
  14. public class InvalidRelationIdException extends RelationException {
  15. /* Serial version */
  16. private static final long serialVersionUID = -7115040321202754171L;
  17. /**
  18. * Default constructor, no message put in exception.
  19. */
  20. public InvalidRelationIdException() {
  21. super();
  22. }
  23. /**
  24. * Constructor with given message put in exception.
  25. *
  26. * @param message the detail message.
  27. */
  28. public InvalidRelationIdException(String message) {
  29. super(message);
  30. }
  31. }