1. /*
  2. * @(#)JMException.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. * Exceptions thrown by JMX implementations.
  10. * It does not include the runtime exceptions.
  11. *
  12. * @since 1.5
  13. */
  14. public class JMException extends java.lang.Exception {
  15. /* Serial version */
  16. private static final long serialVersionUID = 350520924977331825L;
  17. /**
  18. * Default constructor.
  19. */
  20. public JMException() {
  21. super();
  22. }
  23. /**
  24. * Constructor that allows a specific error message to be specified.
  25. *
  26. * @param msg the detail message.
  27. */
  28. public JMException(String msg) {
  29. super(msg);
  30. }
  31. }