Package org.apache.bcel
Interface ExceptionConstants
-
@Deprecated public interface ExceptionConstants
Deprecated.(since 6.0) DO NOT USE - use ExceptionConst insteadException constants.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.Class<java.lang.AbstractMethodError>
ABSTRACT_METHOD_ERROR
Deprecated.static java.lang.Class<java.lang.ArithmeticException>
ARITHMETIC_EXCEPTION
Deprecated.static java.lang.Class<java.lang.ArrayIndexOutOfBoundsException>
ARRAY_INDEX_OUT_OF_BOUNDS_EXCEPTION
Deprecated.static java.lang.Class<java.lang.ClassCastException>
CLASS_CAST_EXCEPTION
Deprecated.static java.lang.Class<java.lang.ClassCircularityError>
CLASS_CIRCULARITY_ERROR
Deprecated.Linking Exceptionsstatic java.lang.Class<java.lang.ClassFormatError>
CLASS_FORMAT_ERROR
Deprecated.static java.lang.Class<java.lang.ExceptionInInitializerError>
EXCEPTION_IN_INITIALIZER_ERROR
Deprecated.static java.lang.Class<?>[]
EXCS_ARRAY_EXCEPTION
Deprecated.static java.lang.Class<?>[]
EXCS_CLASS_AND_INTERFACE_RESOLUTION
Deprecated.Do not use these arrays, use the static methods in the ExceptionConst implementation class insteadstatic java.lang.Class<?>[]
EXCS_FIELD_AND_METHOD_RESOLUTION
Deprecated.static java.lang.Class<?>[]
EXCS_INTERFACE_METHOD_RESOLUTION
Deprecated.static java.lang.Class<?>[]
EXCS_STRING_RESOLUTION
Deprecated.static java.lang.Class<java.lang.IllegalAccessError>
ILLEGAL_ACCESS_ERROR
Deprecated.static java.lang.Class<java.lang.IllegalMonitorStateException>
ILLEGAL_MONITOR_STATE
Deprecated.static java.lang.Class<java.lang.IncompatibleClassChangeError>
INCOMPATIBLE_CLASS_CHANGE_ERROR
Deprecated.static java.lang.Class<java.lang.InstantiationError>
INSTANTIATION_ERROR
Deprecated.static java.lang.Class<java.lang.LinkageError>
LINKING_EXCEPTION
Deprecated.Super class of any linking exception (aka Linkage Error)static java.lang.Class<java.lang.NegativeArraySizeException>
NEGATIVE_ARRAY_SIZE_EXCEPTION
Deprecated.static java.lang.Class<java.lang.NoClassDefFoundError>
NO_CLASS_DEF_FOUND_ERROR
Deprecated.static java.lang.Class<java.lang.NoSuchFieldError>
NO_SUCH_FIELD_ERROR
Deprecated.static java.lang.Class<java.lang.NoSuchMethodError>
NO_SUCH_METHOD_ERROR
Deprecated.static java.lang.Class<java.lang.NullPointerException>
NULL_POINTER_EXCEPTION
Deprecated.Run-Time Exceptionsstatic java.lang.Class<java.lang.RuntimeException>
RUNTIME_EXCEPTION
Deprecated.Super class of any run-time exceptionstatic java.lang.Class<java.lang.Throwable>
THROWABLE
Deprecated.The mother of all exceptionsstatic java.lang.Class<java.lang.UnsatisfiedLinkError>
UNSATISFIED_LINK_ERROR
Deprecated.static java.lang.Class<java.lang.VerifyError>
VERIFY_ERROR
Deprecated.
-
-
-
Field Detail
-
THROWABLE
static final java.lang.Class<java.lang.Throwable> THROWABLE
Deprecated.The mother of all exceptions
-
RUNTIME_EXCEPTION
static final java.lang.Class<java.lang.RuntimeException> RUNTIME_EXCEPTION
Deprecated.Super class of any run-time exception
-
LINKING_EXCEPTION
static final java.lang.Class<java.lang.LinkageError> LINKING_EXCEPTION
Deprecated.Super class of any linking exception (aka Linkage Error)
-
CLASS_CIRCULARITY_ERROR
static final java.lang.Class<java.lang.ClassCircularityError> CLASS_CIRCULARITY_ERROR
Deprecated.Linking Exceptions
-
CLASS_FORMAT_ERROR
static final java.lang.Class<java.lang.ClassFormatError> CLASS_FORMAT_ERROR
Deprecated.
-
EXCEPTION_IN_INITIALIZER_ERROR
static final java.lang.Class<java.lang.ExceptionInInitializerError> EXCEPTION_IN_INITIALIZER_ERROR
Deprecated.
-
INCOMPATIBLE_CLASS_CHANGE_ERROR
static final java.lang.Class<java.lang.IncompatibleClassChangeError> INCOMPATIBLE_CLASS_CHANGE_ERROR
Deprecated.
-
ABSTRACT_METHOD_ERROR
static final java.lang.Class<java.lang.AbstractMethodError> ABSTRACT_METHOD_ERROR
Deprecated.
-
ILLEGAL_ACCESS_ERROR
static final java.lang.Class<java.lang.IllegalAccessError> ILLEGAL_ACCESS_ERROR
Deprecated.
-
INSTANTIATION_ERROR
static final java.lang.Class<java.lang.InstantiationError> INSTANTIATION_ERROR
Deprecated.
-
NO_SUCH_FIELD_ERROR
static final java.lang.Class<java.lang.NoSuchFieldError> NO_SUCH_FIELD_ERROR
Deprecated.
-
NO_SUCH_METHOD_ERROR
static final java.lang.Class<java.lang.NoSuchMethodError> NO_SUCH_METHOD_ERROR
Deprecated.
-
NO_CLASS_DEF_FOUND_ERROR
static final java.lang.Class<java.lang.NoClassDefFoundError> NO_CLASS_DEF_FOUND_ERROR
Deprecated.
-
UNSATISFIED_LINK_ERROR
static final java.lang.Class<java.lang.UnsatisfiedLinkError> UNSATISFIED_LINK_ERROR
Deprecated.
-
VERIFY_ERROR
static final java.lang.Class<java.lang.VerifyError> VERIFY_ERROR
Deprecated.
-
NULL_POINTER_EXCEPTION
static final java.lang.Class<java.lang.NullPointerException> NULL_POINTER_EXCEPTION
Deprecated.Run-Time Exceptions
-
ARRAY_INDEX_OUT_OF_BOUNDS_EXCEPTION
static final java.lang.Class<java.lang.ArrayIndexOutOfBoundsException> ARRAY_INDEX_OUT_OF_BOUNDS_EXCEPTION
Deprecated.
-
ARITHMETIC_EXCEPTION
static final java.lang.Class<java.lang.ArithmeticException> ARITHMETIC_EXCEPTION
Deprecated.
-
NEGATIVE_ARRAY_SIZE_EXCEPTION
static final java.lang.Class<java.lang.NegativeArraySizeException> NEGATIVE_ARRAY_SIZE_EXCEPTION
Deprecated.
-
CLASS_CAST_EXCEPTION
static final java.lang.Class<java.lang.ClassCastException> CLASS_CAST_EXCEPTION
Deprecated.
-
ILLEGAL_MONITOR_STATE
static final java.lang.Class<java.lang.IllegalMonitorStateException> ILLEGAL_MONITOR_STATE
Deprecated.
-
EXCS_CLASS_AND_INTERFACE_RESOLUTION
@Deprecated static final java.lang.Class<?>[] EXCS_CLASS_AND_INTERFACE_RESOLUTION
Deprecated.Do not use these arrays, use the static methods in the ExceptionConst implementation class insteadPre-defined exception arrays according to chapters 5.1-5.4 of the Java Virtual Machine Specification
-
EXCS_FIELD_AND_METHOD_RESOLUTION
@Deprecated static final java.lang.Class<?>[] EXCS_FIELD_AND_METHOD_RESOLUTION
Deprecated.
-
EXCS_INTERFACE_METHOD_RESOLUTION
@Deprecated static final java.lang.Class<?>[] EXCS_INTERFACE_METHOD_RESOLUTION
Deprecated.
-
EXCS_STRING_RESOLUTION
@Deprecated static final java.lang.Class<?>[] EXCS_STRING_RESOLUTION
Deprecated.
-
EXCS_ARRAY_EXCEPTION
@Deprecated static final java.lang.Class<?>[] EXCS_ARRAY_EXCEPTION
Deprecated.
-
-