1. /*
  2. * @(#)file SnmpUnknownMsgProcModelException.java
  3. * @(#)author Sun Microsystems, Inc.
  4. * @(#)version 1.14
  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. import com.sun.jmx.snmp.SnmpUnknownModelException;
  13. /**
  14. * This exception is thrown when an <CODE>SnmpMsgProcessingSubSystem</CODE> doesn't know the passed ID.
  15. * <p><b>This API is a Sun Microsystems internal API and is subject
  16. * to change without notice.</b></p>
  17. * @since 1.5
  18. */
  19. public class SnmpUnknownMsgProcModelException extends SnmpUnknownModelException {
  20. /**
  21. * Constructor.
  22. * @param msg The exception msg to display.
  23. */
  24. public SnmpUnknownMsgProcModelException(String msg) {
  25. super(msg);
  26. }
  27. }