1. /*
  2. * @(#)file SnmpUnknownSubSystemException.java
  3. * @(#)author Sun Microsystems, Inc.
  4. * @(#)version 1.9
  5. * @(#)date 04/09/15
  6. *
  7. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  8. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  9. *
  10. */
  11. package com.sun.jmx.snmp;
  12. /**
  13. * This exception is thrown when the handled <CODE> SnmpSubSystem </CODE> is unknown.
  14. * <p><b>This API is a Sun Microsystems internal API and is subject
  15. * to change without notice.</b></p>
  16. * @since 1.5
  17. */
  18. public class SnmpUnknownSubSystemException extends Exception {
  19. /**
  20. * Constructor.
  21. * @param msg The exception msg to display.
  22. */
  23. public SnmpUnknownSubSystemException(String msg) {
  24. super(msg);
  25. }
  26. }