Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ResourceNotFoundRuntimeException (0.12 sec)

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

     *
     * @author higa
     */
    public class ResourceNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 9033370905740809950L;
    
        /**
         * The path to the resource.
         */
        private final String path;
    
        /**
         * Creates a {@link ResourceNotFoundRuntimeException}.
         *
         * @param path the resource 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)
  2. src/test/java/org/codelibs/core/io/ResourceUtilTest.java

    package org.codelibs.core.io;
    
    import java.io.File;
    import java.io.IOException;
    import java.net.URL;
    import java.net.URLClassLoader;
    
    import junit.framework.TestCase;
    
    import org.codelibs.core.exception.ResourceNotFoundRuntimeException;
    
    /**
     * @author higa
     *
     */
    public class ResourceUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testGetResourcePath() throws Exception {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top