Home
last modified time | relevance | path

Searched refs:newIllegalArgumentException (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandleStatics.java143 /*non-public*/ static RuntimeException newIllegalArgumentException(String message) { in newIllegalArgumentException() method in MethodHandleStatics
146 /*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj) { in newIllegalArgumentException() method in MethodHandleStatics
149 …/*non-public*/ static RuntimeException newIllegalArgumentException(String message, Object obj, Obj… in newIllegalArgumentException() method in MethodHandleStatics
DMethodHandle.java1012 throw newIllegalArgumentException("bad spread array length"); in asSpreaderChecks()
1037 throw newIllegalArgumentException("not an array type", arrayType); in spreadArrayChecks()
1040 throw newIllegalArgumentException("array length is not legal", arrayLength); in spreadArrayChecks()
1044 …throw newIllegalArgumentException("array length is not legal for long[] or double[]", arrayLength); in spreadArrayChecks()
1150 …throw newIllegalArgumentException("array type not assignable to trailing argument", this, arrayTyp… in asCollectorChecks()
DMethodHandles.java675 throw newIllegalArgumentException("illegal lookupClass: "+lookupClass); in checkUnprivilegedlookupClass()
687 throw newIllegalArgumentException("illegal lookupClass: " + lookupClass); in checkUnprivilegedlookupClass()
2385 throw newIllegalArgumentException("bad argument count", leadingArgCount); in spreadInvoker()
2694 throw newIllegalArgumentException("return types do not match", in permuteArgumentChecks()
2707 throw newIllegalArgumentException("parameter types do not match after reorder", in permuteArgumentChecks()
2712 throw newIllegalArgumentException("bad reorder array: "+Arrays.toString(reorder)); in permuteArgumentChecks()
2734 throw newIllegalArgumentException("void type"); in constant()
2850 throw newIllegalArgumentException("too many values to insert"); in insertArgumentsChecks()
2852 throw newIllegalArgumentException("no argument type to append"); in insertArgumentsChecks()
2923 throw newIllegalArgumentException("no argument type to remove" in dropArgumentChecks()
[all …]
DMethodHandleInfo.java246 throw newIllegalArgumentException("invalid reference kind", referenceKind); in referenceKindToString()
DMethodType.java172 throw newIllegalArgumentException("parameter type cannot be void"); in checkPtype()
190 throw newIllegalArgumentException("bad parameter count "+count); in checkSlotCount()
513 throw newIllegalArgumentException("no leading reference parameter"); in leadingReferenceParameter()
1089 throw newIllegalArgumentException("not a method descriptor: "+descriptor); in fromMethodDescriptorString()
DMethodTypeForm.java259 if (pslotCount >= 256) throw newIllegalArgumentException("too many arguments"); in MethodTypeForm()
/libcore/ojluni/src/main/java/sun/invoke/util/
DWrapper.java243 throw newIllegalArgumentException("not primitive: "+type); in forPrimitiveType()
266 throw newIllegalArgumentException("not wrapper: "+type); in forWrapperType()
289 throw newIllegalArgumentException("not basic type char: "+type); in forBasicType()
543 case 'L': throw newIllegalArgumentException("cannot wrap to object type"); in wrap()
573 private static RuntimeException newIllegalArgumentException(String message, Object x) { in newIllegalArgumentException() method in Wrapper
574 return newIllegalArgumentException(message + x); in newIllegalArgumentException()
576 private static RuntimeException newIllegalArgumentException(String message) { in newIllegalArgumentException() method in Wrapper