Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for ClRuntimeException (0.21 sec)

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

            this(messageCode, new Object[0], null);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         * @param args arguments for messages
         */
        public ClRuntimeException(final String messageCode, final Object[] args) {
            this(messageCode, args, null);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.9K 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"));
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/FileAccessException.java

     */
    package org.codelibs.core.exception;
    
    /**
     * Exception while accessing a file.
     *
     * @author shinsuke
     *
     */
    public class FileAccessException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public FileAccessException(final String messageCode, final Object[] args, final Throwable cause) {
            super(messageCode, args, cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/SAXRuntimeException.java

    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    
    /**
     * {@link SAXException}をラップする例外です。
     *
     * @author higa
     */
    public class SAXRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -4933312103385038765L;
    
        /**
         * {@link SAXRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/NoSuchAlgorithmRuntimeException.java

    import java.security.NoSuchAlgorithmException;
    
    /**
     * {@link NoSuchAlgorithmException}をラップする例外です。
     *
     * @author higa
     */
    public class NoSuchAlgorithmRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3176447530746274091L;
    
        /**
         * {@link NoSuchAlgorithmRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import javax.crypto.IllegalBlockSizeException;
    
    /**
     * @author shinsuke
     *
     */
    public class IllegalBlockSizeRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public IllegalBlockSizeRuntimeException(final IllegalBlockSizeException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import javax.crypto.BadPaddingException;
    
    /**
     * @author shinsuke
     *
     */
    public class BadPaddingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public BadPaddingRuntimeException(final BadPaddingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1008 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/IORuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.io.IOException;
    
    /**
     * {@link IOException}をラップする例外です。
     *
     * @author higa
     */
    public class IORuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1533554330702215389L;
    
        /**
         * {@link IORuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java

    import javax.xml.parsers.ParserConfigurationException;
    
    /**
     * {@link ParserConfigurationException}をラップする例外です。
     *
     * @author higa
     */
    public class ParserConfigurationRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -4610465906028959083L;
    
        /**
         * {@link ParserConfigurationRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java

    import java.lang.reflect.Field;
    
    /**
     * {@link Field}が見つからない場合にスローされる例外です。
     *
     * @author higa
     *
     */
    public class FieldNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -2715036865146285893L;
    
        private final Class<?> targetClass;
    
        private final String fieldName;
    
        /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top