Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for ClRuntimeException (0.07 sec)

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

    /**
     * Signals that this exception has been thrown when a particular padding mechanism is expected for the input data but the data is not padded properly.
     * @author shinsuke
     */
    public class BadPaddingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Creates a new {@link BadPaddingRuntimeException} with the specified cause.
         *
         * @param cause
         *            the cause
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    /**
     * Exception thrown when a resource cannot be found.
     *
     * @author higa
     */
    public class ResourceNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 9033370905740809950L;
    
        /**
         * The path to the resource.
         */
        private final String path;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/net/URLUtil.java

    import java.io.UnsupportedEncodingException;
    import java.net.URL;
    import java.net.URLConnection;
    import java.net.URLDecoder;
    import java.net.URLEncoder;
    import java.util.Map;
    
    import org.codelibs.core.exception.ClRuntimeException;
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
     * Utility class for handling {@link URL}.
     *
     * @author higa
     */
    public abstract class URLUtil {
    
        /**
         * Do not instantiate.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    /**
     * Exception that wraps {@link IllegalAccessException}.
     *
     * @author higa
     */
    public class IllegalAccessRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3649900343028907465L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java

     * @author shinsuke
     */
    public class IllegalBlockSizeRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Creates a new {@link IllegalBlockSizeRuntimeException} with the specified cause.
         *
         * @param cause
         *            the cause
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java

    import java.lang.reflect.Field;
    
    /**
     * Exception thrown when a {@link Field} cannot be found.
     *
     * @author higa
     *
     */
    public class FieldNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -2715036865146285893L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The name of the field.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/SAXRuntimeException.java

    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    
    /**
     * Exception that wraps {@link SAXException}.
     *
     * @author higa
     */
    public class SAXRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -4933312103385038765L;
    
        /**
         * Creates a {@link SAXRuntimeException}.
         *
         * @param cause the underlying exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * Exception thrown when a {@link Method} cannot be found.
     *
     * @author higa
     *
     */
    public class MethodNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3508955801981550317L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The name of the method.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

    import java.lang.reflect.Constructor;
    
    /**
     * Exception thrown when a {@link Constructor} cannot be found.
     *
     * @author higa
     */
    public class ConstructorNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 8584662068396978822L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The method arguments.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top