Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Pupier (0.18 sec)

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

        public ClUnsupportedOperationException(final String message) {
            super(message);
        }
    
        /**
         * {@link ClUnsupportedOperationException}を作成します。
         *
         * @param message
         *            メッセージ
         * @param cause
         *            元の例外
         */
        public ClUnsupportedOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/NoSuchAlgorithmRuntimeException.java

        /**
         * {@link NoSuchAlgorithmRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public NoSuchAlgorithmRuntimeException(final NoSuchAlgorithmException cause) {
            super("ECL0067", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/NullArgumentException.java

        /**
         * {@link NullArgumentException}を作成します。
         *
         * @param argName
         *            {@code null} である引数の名前
         */
        public NullArgumentException(final String argName) {
            super(argName, "ECL0008", asArray(argName));
        }
    
    Java
    - Registered: Fri May 03 20:58:11 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/EmptyArgumentException.java

         *            引数の配列
         * @param cause
         *            原因となった例外
         */
        public EmptyArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) {
            super(argName, messageCode, args, cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         * @param args arguments for messages
         * @param cause cause of exception
         */
        public ClRuntimeException(final String messageCode, final Object[] args, final Throwable cause) {
            super(cause);
            this.messageCode = messageCode;
            this.args = args;
            simpleMessage = MessageFormatter.getSimpleMessage(messageCode, args);
            message = "[" + messageCode + "]" + simpleMessage;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java

            super("ECL0041", asArray(targetClass.getName(), cause), cause);
            this.targetClass = targetClass;
        }
    
        @Override
        public synchronized InstantiationRuntimeException initCause(final Throwable cause) {
            return (InstantiationRuntimeException) super.initCause(cause);
        }
    
        /**
         * ターゲットクラスを返します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java

         * @param targetClass
         *            ターゲットクラス
         * @param methodArgs
         *            引数の並び
         */
        public ConstructorNotFoundRuntimeException(final Class<?> targetClass, final Object[] methodArgs) {
            super("ECL0048", asArray(targetClass.getName(), getSignature(methodArgs)));
            this.targetClass = targetClass;
            this.methodArgs = methodArgs;
            paramTypes = null;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/InvalidKeyRuntimeException.java

        /**
         * {@link InvalidKeyRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public InvalidKeyRuntimeException(final InvalidKeyException cause) {
            super("ECL0068", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/NamingRuntimeException.java

        /**
         * {@link NamingRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public NamingRuntimeException(final NamingException cause) {
            super("ECL0066", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/NoSuchPaddingRuntimeException.java

        /**
         * {@link NoSuchPaddingException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public NoSuchPaddingRuntimeException(final NoSuchPaddingException cause) {
            super("ECL0069", asArray(cause), cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top