01: package com.dwipal; 02: 03: public class SnmpException extends Exception { 04: public SnmpException() { 05: super ("SNMP Exception"); 06: } 07: 08: public SnmpException(String msg) { 09: super (msg); 10: } 11: 12: public SnmpException(Exception exception) { 13: super(exception); 14: } 15: }