1. /*
  2. * @(#)InstanceNotFoundException.java 4.16 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;
  8. /**
  9. * The specified MBean does not exist in the repository.
  10. *
  11. * @since 1.5
  12. */
  13. public class InstanceNotFoundException extends OperationsException {
  14. /* Serial version */
  15. private static final long serialVersionUID = -882579438394773049L;
  16. /**
  17. * Default constructor.
  18. */
  19. public InstanceNotFoundException() {
  20. super();
  21. }
  22. /**
  23. * Constructor that allows a specific error message to be specified.
  24. *
  25. * @param message the detail message.
  26. */
  27. public InstanceNotFoundException(String message) {
  28. super(message);
  29. }
  30. }