You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.4 KiB
68 lines
1.4 KiB
/*
|
|
* Copyright (c) 2001, 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
package com.sun.jmx.snmp;
|
|
|
|
/**
|
|
* This exception is thrown when an error occurs in an <CODE> SnmpSecurityModel </CODE>.
|
|
* <p><b>This API is a Sun Microsystems internal API and is subject
|
|
* to change without notice.</b></p>
|
|
* @since 1.5
|
|
*/
|
|
public class SnmpSecurityException extends Exception {
|
|
private static final long serialVersionUID = 5574448147432833480L;
|
|
|
|
/**
|
|
* The current request varbind list.
|
|
*/
|
|
public SnmpVarBind[] list = null;
|
|
/**
|
|
* The status of the exception. See {@link com.sun.jmx.snmp.SnmpDefinitions} for possible values.
|
|
*/
|
|
public int status = SnmpDefinitions.snmpReqUnknownError;
|
|
/**
|
|
* The current security model related security parameters.
|
|
*/
|
|
public SnmpSecurityParameters params = null;
|
|
/**
|
|
* The current context engine Id.
|
|
*/
|
|
public byte[] contextEngineId = null;
|
|
/**
|
|
* The current context name.
|
|
*/
|
|
public byte[] contextName = null;
|
|
/**
|
|
* The current flags.
|
|
*/
|
|
public byte flags = (byte) SnmpDefinitions.noAuthNoPriv;
|
|
/**
|
|
* Constructor.
|
|
* @param msg The exception msg to display.
|
|
*/
|
|
public SnmpSecurityException(String msg) {
|
|
super(msg);
|
|
}
|
|
}
|