1 /* 2 * @(#)file SnmpBadSecurityLevelException.java 3 * @(#)author Sun Microsystems, Inc. 4 * @(#)version 1.14 5 * @(#)date 08/02/09 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 an incorrect security level is handled. 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 SnmpBadSecurityLevelException extends Exception { 19 public SnmpBadSecurityLevelException(String msg) { 20 super(msg); 21 } 22 } 23