- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for IllegalAccessRuntimeException (0.21 sec)
-
src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java
/** * {@link IllegalAccessException}をラップする例外です。 * * @author higa */ public class IllegalAccessRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3649900343028907465L; private final Class<?> targetClass; /** * {@link IllegalAccessRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param cause
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
* フィールド。{@literal null}であってはいけません * @return {@code static}フィールドで表現される値 * @throws IllegalAccessRuntimeException * 基本となるフィールドにアクセスできない場合 * @see Field#get(Object) */ @SuppressWarnings("unchecked") public static <T> T get(final Field field) throws IllegalAccessRuntimeException { assertArgumentNotNull("field", field); return (T) get(field, null); } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ConstructorUtil.java
import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Modifier; import org.codelibs.core.exception.IllegalAccessRuntimeException; import org.codelibs.core.exception.InstantiationRuntimeException; import org.codelibs.core.exception.InvocationTargetRuntimeException; /** * {@link Constructor}用のユーティリティクラスです。 * * @author higa */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.lang.reflect.Type; import org.codelibs.core.exception.IllegalAccessRuntimeException; import org.codelibs.core.exception.InvocationTargetRuntimeException; /** * {@link Method}用のユーティリティクラスです。 * * @author higa */ public abstract class MethodUtil { /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
assertArgumentNotNull("clazz", clazz); try { return clazz.newInstance(); } catch (final InstantiationException e) { throw new InstantiationRuntimeException(clazz, e); } catch (final IllegalAccessException e) { throw new IllegalAccessRuntimeException(clazz, e); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 27.5K bytes - Viewed (0)