1. /*
  2. * @(#)file SnmpUnknownModelException.java
  3. * @(#)author Sun Microsystems, Inc.
  4. * @(#)version 1.12
  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 a needed model is not present in the engine.
  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 SnmpUnknownModelException extends Exception {
  19. /**
  20. * Constructor.
  21. * @param msg The exception msg to display.
  22. */
  23. public SnmpUnknownModelException(String msg) {
  24. super(msg);
  25. }
  26. }