1 package com.dwipal;2 3 public class SnmpException extends Exception {4 public SnmpException() {5 super("SNMP Exception");6 }7 public SnmpException(String msg) {8 super(msg);9 }10 public SnmpException(Exception exception) {11 super(exception);12 }13 }14