Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ClassNotFoundRuntimeException (2.01 sec)

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

            this(null, cause);
        }
    
        /**
         * Creates a {@link ClassNotFoundRuntimeException}.
         *
         * @param className the class name
         * @param cause the underlying exception
         */
        public ClassNotFoundRuntimeException(final String className, final ClassNotFoundException cause) {
            super("ECL0044", asArray(cause), cause);
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/SerializeUtil.java

    import java.io.IOException;
    import java.io.ObjectInputFilter;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    import java.util.Set;
    
    import org.codelibs.core.exception.ClassNotFoundRuntimeException;
    import org.codelibs.core.exception.IORuntimeException;
    
    /**
     * Utility for serializing objects with security protections.
     * <p>
     * This utility provides object serialization and deserialization with built-in
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

    import java.util.Enumeration;
    import java.util.Iterator;
    
    import org.codelibs.core.collection.EnumerationIterator;
    import org.codelibs.core.exception.ClIllegalStateException;
    import org.codelibs.core.exception.ClassNotFoundRuntimeException;
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * Utility class for handling {@link ClassLoader}.
     *
     * @author koichik
     */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top