Home
last modified time | relevance | path

Searched refs:ClassGenException (Results 1 – 25 of 37) sorted by relevance

12

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DClassGenException.java26 public class ClassGenException extends RuntimeException { class
30 public ClassGenException() { in ClassGenException() method in ClassGenException
35 public ClassGenException(final String s) { in ClassGenException() method in ClassGenException
39 public ClassGenException(final String s, final Throwable initCause) { in ClassGenException() method in ClassGenException
DInstructionList.java184 throw new ClassGenException(e.toString(), e); in InstructionList()
200 throw new ClassGenException("Couldn't find target for branch: " + bi); in InstructionList()
211 throw new ClassGenException("Couldn't find target for switch: " + bi); in InstructionList()
231 throw new ClassGenException("Appending null InstructionList"); in append()
263 throw new ClassGenException("Instruction " + i + " is not contained in this list."); in append()
277 throw new ClassGenException("Appending null InstructionList"); in append()
428 throw new ClassGenException("Inserting null InstructionList"); in insert()
494 throw new ClassGenException("Instruction " + i + " is not contained in this list."); in insert()
620 throw new ClassGenException("Invalid null handle: From " + start + " to " + end); in move()
623 …throw new ClassGenException("Invalid range: From " + start + " to " + end + " contains target " + … in move()
[all …]
DBranchInstruction.java81 throw new ClassGenException("Branch target offset too large for short: " + index); in dump()
93 throw new ClassGenException("Target of " + super.toString(true) in getTargetOffset()
98 throw new ClassGenException("Invalid branch target position offset for " in getTargetOffset()
233 throw new ClassGenException("Not targeting " + old_ih + ", but " + target); in updateTarget()
DBasicType.java38 throw new ClassGenException("Invalid type: " + type); in BasicType()
65 throw new ClassGenException("Invalid type: " + type); in getType()
DArrayType.java61 throw new ClassGenException("Invalid number of dimensions: " + dimensions); in ArrayType()
70 throw new ClassGenException("Invalid type: void[]"); in ArrayType()
DLocalVariableInstruction.java168 throw new ClassGenException("Illegal value: " + n); in setIndex()
220 throw new ClassGenException("Oops: unknown case in switch" + canon_tag); in getType()
DInstructionHandle.java82 throw new ClassGenException("Assigning null to handle"); in setInstruction()
85 throw new ClassGenException("Assigning branch instruction " + i + " to plain handle"); in setInstruction()
DFieldGen.java201 throw new ClassGenException("You haven't defined the type of the field yet"); in checkType()
204 throw new ClassGenException("Only final fields may have an initial value!"); in checkType()
207 throw new ClassGenException("Types are not compatible: " + superType + " vs. " + atype); in checkType()
DLocalVariableGen.java57 throw new ClassGenException("Invalid index index: " + index); in LocalVariableGen()
205 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start + ", " + end in updateTarget()
DSelect.java102 … throw new ClassGenException("Match and target array have not the same length: Match length: " + in Select()
212 throw new ClassGenException("Not targeting " + old_ih); in updateTarget()
DInstructionTargeter.java44 void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) throws ClassGenException; in updateTarget()
DICONST.java45 throw new ClassGenException("ICONST can be used only for value between -1 and 5: " + i); in ICONST()
DDCONST.java47 throw new ClassGenException("DCONST can be used only for 0.0 and 1.0: " + f); in DCONST()
DLCONST.java47 throw new ClassGenException("LCONST can be used only for 0 and 1: " + l); in LCONST()
DReturnInstruction.java63 throw new ClassGenException("Unknown type " + _opcode); in getType()
DFCONST.java49 throw new ClassGenException("FCONST can be used only for 0.0, 1.0 and 2.0: " + f); in FCONST()
DConversionInstruction.java75 throw new ClassGenException("Unknown type " + _opcode); in getType()
DLineNumberGen.java63 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}"); in updateTarget()
DBranchHandle.java125 throw new ClassGenException("Assigning " + i in setInstruction()
DArithmeticInstruction.java93 throw new ClassGenException("Unknown type " + _opcode); in getType()
DRET.java111 throw new ClassGenException("Negative index value: " + n); in setIndex()
DInstruction.java465 throw new ClassGenException("Illegal opcode detected: " + opcode); in readInstruction()
471 throw new ClassGenException("Illegal opcode after wide: " + opcode); in readInstruction()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DBranchHandleTestCase.java26 @Test(expected=ClassGenException.class)
42 @Test(expected=ClassGenException.class)
50 @Test(expected=ClassGenException.class)
DInstructionHandleTestCase.java27 @Test(expected=ClassGenException.class)
43 @Test(expected=ClassGenException.class)
51 @Test(expected=ClassGenException.class)
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DInstructionFinder.java30 import org.apache.bcel.generic.ClassGenException;
216 throw new ClassGenException("Instruction handle " + from in search()

12