1 29 30 31 package snmp; 32 33 34 39 40 public class SNMPSetException extends SNMPRequestException 41 { 42 43 49 50 53 59 60 63 64 public SNMPSetException(int errorIndex, int errorStatus) 65 { 66 super(errorIndex, errorStatus); 67 } 68 69 70 73 74 public SNMPSetException(String message, int errorIndex, int errorStatus) 75 { 76 super(message, errorIndex, errorStatus); 77 } 78 79 } | Popular Tags |