1. /*
  2. * @(#)ServiceNotFoundException.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. //RI import
  9. import javax.management.OperationsException;
  10. /**
  11. * Represents exceptions raised when a requested service is not supported.
  12. *
  13. * @since 1.5
  14. */
  15. public class ServiceNotFoundException extends OperationsException {
  16. /* Serial version */
  17. private static final long serialVersionUID = -3990675661956646827L;
  18. /**
  19. * Default constructor.
  20. */
  21. public ServiceNotFoundException() {
  22. super();
  23. }
  24. /**
  25. * Constructor that allows a specific error message to be specified.
  26. *
  27. * @param message the detail message.
  28. */
  29. public ServiceNotFoundException(String message) {
  30. super(message);
  31. }
  32. }