- Sort Score
- Num 10 results
- Language All
Results 31 - 34 of 34 for ClRuntimeException (0.12 seconds)
-
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 */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 2K bytes - Click Count (0) -
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.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 3.3K bytes - Click Count (0) -
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.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 3.8K bytes - Click Count (0) -
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.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 6.8K bytes - Click Count (0)