- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for ResourceNotFoundRuntimeException (0.2 sec)
-
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) -
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) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
try { Path path = ResourceUtil.getConfOrClassesPath("nonexistent.conf"); fail("Should throw ResourceNotFoundRuntimeException for non-existent file"); } catch (org.codelibs.core.exception.ResourceNotFoundRuntimeException e) { // Expected behavior - method throws exception for non-existent files assertTrue(e.getMessage().contains("nonexistent.conf"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceUtil.java
import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.util.Properties; import org.codelibs.core.exception.IORuntimeException; import org.codelibs.core.exception.ResourceNotFoundRuntimeException; import org.codelibs.core.jar.JarFileUtil; import org.codelibs.core.net.URLUtil; /** * Utility class for resource handling. * * @author higa */ public abstract class ResourceUtil {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
import java.util.stream.Collectors; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.beans.util.BeanUtil; import org.codelibs.core.exception.ResourceNotFoundRuntimeException; import org.codelibs.core.io.FileUtil; import org.codelibs.core.io.ResourceUtil; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.lang.ThreadUtil; import org.codelibs.curl.CurlResponse;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0)