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