1 11 12 13 package com.sun.jmx.snmp; 14 15 16 18 35 36 public class SnmpTooBigException extends Exception { 37 38 42 public SnmpTooBigException() { 43 varBindCount = 0 ; 44 } 45 46 51 public SnmpTooBigException(int n) { 52 varBindCount = n ; 53 } 54 55 56 62 public int getVarBindCount() { 63 return varBindCount ; 64 } 65 66 70 private int varBindCount ; 71 } 72 73 74 75 76 | Popular Tags |