You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
866 B
64 lines
866 B
/*
|
|
* Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
package com.sun.jmx.snmp;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Exception thrown when a BER encoding/decoding error occurs.
|
|
*
|
|
* <p><b>This API is a Sun Microsystems internal API and is subject
|
|
* to change without notice.</b></p>
|
|
*
|
|
* @since 1.5
|
|
*/
|
|
|
|
public class BerException extends Exception {
|
|
private static final long serialVersionUID = 494709767137042951L;
|
|
|
|
public static final int BAD_VERSION=1;
|
|
|
|
private int errorType= 0;
|
|
|
|
public BerException() {
|
|
errorType= 0;
|
|
}
|
|
|
|
public BerException(int x) {
|
|
errorType= x;
|
|
}
|
|
|
|
public boolean isInvalidSnmpVersion() {
|
|
if (errorType == BAD_VERSION)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
}
|