Searched refs:newIllegalArgumentException (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandleStatics.java112 /*non-public*/ static RuntimeException newIllegalArgumentException(String message) { method in class:MethodHandleStatics
115 /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj) { method in class:MethodHandleStatics
118 /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj, Object obj2) { method in class:MethodHandleStatics
H A DMethodHandle.java816 throw newIllegalArgumentException("bad spread array length");
840 throw newIllegalArgumentException("not an array type", arrayType);
843 throw newIllegalArgumentException("array length is not legal", arrayLength);
847 throw newIllegalArgumentException("array length is not legal for long[] or double[]", arrayLength);
939 throw newIllegalArgumentException("array type not assignable to trailing argument", this, arrayType);
1200 throw newIllegalArgumentException("no leading reference parameter", x);
H A DMethodHandles.java502 throw newIllegalArgumentException("illegal lookupClass: "+lookupClass);
1612 throw newIllegalArgumentException("return types do not match",
1625 throw newIllegalArgumentException("parameter types do not match after reorder",
1630 throw newIllegalArgumentException("bad reorder array: "+Arrays.toString(reorder));
1652 throw newIllegalArgumentException("void type");
1670 throw newIllegalArgumentException("void type");
1716 throw newIllegalArgumentException("too many values to insert");
1718 throw newIllegalArgumentException("no argument type to append");
1797 throw newIllegalArgumentException("no argument type to remove");
1926 throw newIllegalArgumentException("to
[all...]
H A DMethodTypeForm.java188 if (pslotCount >= 256) throw newIllegalArgumentException("too many arguments");
H A DMethodType.java150 throw newIllegalArgumentException("parameter type cannot be void");
167 throw newIllegalArgumentException("bad parameter count "+count);
H A DMemberName.java125 throw newIllegalArgumentException("not invocable, no method type");
179 throw newIllegalArgumentException("not a field or nested class, no simple type");
H A DMethodHandleImpl.java58 throw newIllegalArgumentException("not an array: "+arrayClass);
474 throw newIllegalArgumentException("Array is not of length "+n);
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java251 throw newIllegalArgumentException("not primitive: "+type);
274 throw newIllegalArgumentException("not wrapper: "+type);
297 throw newIllegalArgumentException("not basic type char: "+type);
551 case 'L': throw newIllegalArgumentException("cannot wrap to object type");
581 private static RuntimeException newIllegalArgumentException(String message, Object x) { method in class:Wrapper
582 return newIllegalArgumentException(message + x);
584 private static RuntimeException newIllegalArgumentException(String message) { method in class:Wrapper

Completed in 97 milliseconds