FileDocCategorySizeDatePackage
BerException.javaAPI DocJava SE 5 API920Fri Aug 26 14:55:02 BST 2005com.sun.jmx.snmp

BerException

public class BerException extends Exception
Exception thrown when a BER encoding/decoding error occurs.

This API is a Sun Microsystems internal API and is subject to change without notice.

version
4.12 12/19/03
author
Sun Microsystems, Inc
since
1.5

Fields Summary
public static final int
BAD_VERSION
private int
errorType
Constructors Summary
public BerException()


    
    errorType= 0;
  
public BerException(int x)

    errorType= x;
  
Methods Summary
public booleanisInvalidSnmpVersion()

    if (errorType == BAD_VERSION) 
      return true;
    else
      return false;