Searched refs:ClassGenException (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DClassGenException.java67 public class ClassGenException extends RuntimeException { class in inherits:RuntimeException
68 public ClassGenException() { super(); } method in class:ClassGenException
69 public ClassGenException(String s) { super(s); } method in class:ClassGenException
H A DBasicType.java78 throw new ClassGenException("Invalid type: " + type);
94 throw new ClassGenException("Invalid type: " + type);
H A DBranchInstruction.java103 throw new ClassGenException("Branch target offset too large for short");
114 throw new ClassGenException("Target of " + super.toString(true) +
120 throw new ClassGenException("Invalid branch target position offset for " +
249 throw new ClassGenException("Not targeting " + old_ih + ", but " + target);
H A DArrayType.java98 throw new ClassGenException("Invalid number of dimensions: " + dimensions);
108 throw new ClassGenException("Invalid type: void[]");
H A DConversionInstruction.java101 throw new ClassGenException("Unknown type " + opcode);
H A DDCONST.java86 throw new ClassGenException("DCONST can be used only for 0.0 and 1.0: " + f);
H A DFCONST.java88 throw new ClassGenException("FCONST can be used only for 0.0, 1.0 and 2.0: " + f);
H A DICONST.java84 throw new ClassGenException("ICONST can be used only for value between -1 and 5: " +
H A DLCONST.java86 throw new ClassGenException("LCONST can be used only for 0 and 1: " + l);
H A DReturnInstruction.java93 throw new ClassGenException("Unknown type " + opcode);
H A DInstructionList.java208 } catch(IOException e) { throw new ClassGenException(e.toString()); }
225 throw new ClassGenException("Couldn't find target for branch: " + bi);
239 throw new ClassGenException("Couldn't find target for switch: " + bi);
258 throw new ClassGenException("Appending null InstructionList");
294 throw new ClassGenException("Instruction " + i +
309 throw new ClassGenException("Appending null InstructionList");
454 throw new ClassGenException("Inserting null InstructionList");
525 throw new ClassGenException("Instruction " + i +
643 throw new ClassGenException("Invalid null handle: From " + start + " to " + end);
646 throw new ClassGenException("Invali
[all...]
H A DInstructionHandle.java100 throw new ClassGenException("Assigning null to handle");
103 throw new ClassGenException("Assigning branch instruction " + i + " to plain handle");
H A DLocalVariableInstruction.java182 throw new ClassGenException("Illegal value: " + n);
226 default: throw new ClassGenException("Oops: unknown case in switch" + canon_tag);
H A DSelect.java107 throw new ClassGenException("Match and target array have not the same length");
224 throw new ClassGenException("Not targeting " + old_ih);
H A DArithmeticInstruction.java106 throw new ClassGenException("Unknown type " + opcode);
H A DBranchHandle.java148 throw new ClassGenException("Assigning " + i +
H A DLineNumberGen.java102 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}");
H A DRET.java134 throw new ClassGenException("Negative index value: " + n);
H A DInstruction.java200 throw new ClassGenException("Illegal opcode detected.");
214 } catch(Exception e) { throw new ClassGenException(e.toString()); }
H A DLocalVariableGen.java97 throw new ClassGenException("Invalid index index: " + index);
239 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start + ", " +
H A DCPInstruction.java153 throw new ClassGenException("Negative index value: " + index);
H A DIINC.java149 throw new ClassGenException("Negative index value: " + n);
H A DINVOKEINTERFACE.java87 throw new ClassGenException("Number of arguments must be > 0 " + nargs);
H A DMULTIANEWARRAY.java84 throw new ClassGenException("Invalid dimensions value: " + dimensions);
H A DFieldGen.java194 throw new ClassGenException("You haven't defined the type of the field yet");
197 throw new ClassGenException("Only final fields may have an initial value!");
200 throw new ClassGenException("Types are not compatible: " + type + " vs. " + atype);

Completed in 44 milliseconds

12