- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for ClRuntimeException (0.08 sec)
-
src/main/java/org/codelibs/core/exception/ClRuntimeException.java
*/ private final String simpleMessage; /** * Creates {@link ClRuntimeException}. * * @param messageCode message code */ public ClRuntimeException(final String messageCode) { this(messageCode, new Object[0], null); } /** * Creates {@link ClRuntimeException}. * * @param messageCode message code * @param args arguments for messages
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ParseRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import java.text.ParseException; /** * Exception thrown when parsing fails. * * @author higa */ public class ParseRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -5237329676597387063L; /** * Creates a {@link ParseRuntimeException}. * * @param cause the underlying exception */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SQLRuntimeException.java
import org.codelibs.core.message.MessageFormatter; /** * Exception that wraps {@link SQLException}. * * @author higa * @author manhole */ public class SQLRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 2533513110369526191L; /** * Creates a {@link SQLRuntimeException}. * * @param cause the underlying exception */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java
import javax.xml.parsers.ParserConfigurationException; /** * Exception that wraps {@link ParserConfigurationException}. * * @author higa */ public class ParserConfigurationRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -4610465906028959083L; /** * Creates a {@link ParserConfigurationRuntimeException}. * * @param cause the underlying exception */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java
import java.io.UnsupportedEncodingException; /** * Signals that a character encoding is not supported. * @author shinsuke */ public class UnsupportedEncodingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * Creates a new {@link UnsupportedEncodingRuntimeException} with the specified cause. * * @param cause
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java
import java.lang.reflect.InvocationTargetException; /** * Exception that wraps {@link InvocationTargetException}. * * @author higa */ public class InvocationTargetRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 7760491787158046906L; /** * 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.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; /** * Exception that wraps {@link InstantiationException}. * * @author higa */ public class InstantiationRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 5220902071756706607L; /** * 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.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
import org.codelibs.core.beans.Converter; /** * Exception thrown when an error occurs in a {@link Converter}. * * @author higa */ public class ConverterRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The name of the property. */ private final String propertyName; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java
import java.lang.reflect.Field; /** * Exception thrown when accessing a non-{@literal static} {@link Field} without specifying an object. * * @author koichik */ public class FieldNotStaticRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -7791347225750660981L; /** * 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) -
src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java
/** * Exception thrown when accessing a non-{@literal static} {@link Method} without specifying an object. * * @author koichik */ public class MethodNotStaticRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 7186052234464152208L; /** * 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 - 1.9K bytes - Viewed (0)