类 ClassTooLargeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IndexOutOfBoundsException
cn.taketoday.bytecode.ClassTooLargeException
- 所有已实现的接口:
Serializable
Exception thrown when the constant pool of a class produced by a
ClassWriter is too
large.- 作者:
- Jason Zaugg
- 另请参阅:
-
字段概要
字段 -
构造器概要
构造器构造器说明ClassTooLargeException(String className, int constantPoolCount) Constructs a newClassTooLargeException. -
方法概要
修饰符和类型方法说明Returns the internal name of the class.intReturns the number of constant pool items of the class.
-
字段详细资料
-
serialVersionUID
private static final long serialVersionUID- 另请参阅:
-
className
-
constantPoolCount
private final int constantPoolCount
-
-
构造器详细资料
-
ClassTooLargeException
Constructs a newClassTooLargeException.- 参数:
className- the internal name of the class.constantPoolCount- the number of constant pool items of the class.
-
-
方法详细资料
-
getClassName
Returns the internal name of the class.- 返回:
- the internal name of the class.
-
getConstantPoolCount
public int getConstantPoolCount()Returns the number of constant pool items of the class.- 返回:
- the number of constant pool items of the class.
-