1 29 30 31 package snmp; 32 33 34 39 40 public class SNMPGetException extends SNMPRequestException 41 { 42 48 49 52 58 59 62 63 public SNMPGetException(int errorIndex, int errorStatus) 64 { 65 super(errorIndex, errorStatus); 66 } 67 68 69 72 73 public SNMPGetException(String message, int errorIndex, int errorStatus) 74 { 75 super(message, errorIndex, errorStatus); 76 } 77 78 } | Popular Tags |