Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for ClRuntimeException (0.93 sec)

  1. 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)
  2. src/test/java/org/codelibs/core/exception/SRuntimeExceptionTest.java

     *
     */
    public class SRuntimeExceptionTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testSeasarRuntimeException() throws Exception {
            final ClRuntimeException ex = new ClRuntimeException("ECL0001", asArray("hoge"));
            assertThat(ex.getMessageCode(), is("ECL0001"));
            assertThat(ex.getArgs().length, is(1));
            assertThat(ex.getArgs()[0], is((Object) "hoge"));
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top