Searched defs:newIllegalArgumentException (Results 1 - 2 of 2) 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
/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 2474 milliseconds