1 11 package com.sun.jmx.snmp; 12 13 19 public class SnmpSecurityException extends Exception { 20 23 public SnmpVarBind[] list = null; 24 27 public int status = SnmpDefinitions.snmpReqUnknownError; 28 31 public SnmpSecurityParameters params = null; 32 35 public byte[] contextEngineId = null; 36 39 public byte[] contextName = null; 40 43 public byte flags = (byte) SnmpDefinitions.noAuthNoPriv; 44 48 public SnmpSecurityException(String msg) { 49 super(msg); 50 } 51 } 52 | Popular Tags |