1 22 package org.jboss.jmx.adaptor.snmp.agent; 23 24 import org.opennms.protocols.snmp.SnmpObjectId; 25 26 33 public class ReadOnlyException extends Exception  34 { 35 public ReadOnlyException(final String oid) 36 { 37 super("OID " + oid + " is read only"); 38 } 39 40 public ReadOnlyException(SnmpObjectId oid) 41 { 42 super("OID " + oid + " is read only"); 43 } 44 } 45 | Popular Tags |