Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IllegalAccessRuntimeException (0.08 sec)

  1. src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java

     *
     * @author higa
     */
    public class IllegalAccessRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3649900343028907465L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * Creates a {@link IllegalAccessRuntimeException}.
         *
         * @param targetClass
         *            Target class
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. 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;
    
    /**
     * Utility class for {@link Constructor} operations.
     *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top