Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Krause (0.16 sec)

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

         * @param messageCode message code
         * @param cause cause of exception
         */
        public ClRuntimeException(final String messageCode, final Throwable cause) {
            this(messageCode, new Object[0], cause);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         * @param args arguments for messages
         * @param cause cause of exception
         */
    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/main/java/org/codelibs/core/exception/ClUnsupportedOperationException.java

         *
         * @param message
         *            メッセージ
         * @param cause
         *            元の例外
         */
        public ClUnsupportedOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * {@link ClUnsupportedOperationException}を作成します。
         *
         * @param cause
         *            元の例外
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. 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 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/EmptyArgumentException.java

         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の配列
         * @param cause
         *            原因となった例外
         */
        public EmptyArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) {
            super(argName, messageCode, args, cause);
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 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/SQLRuntimeException.java

         * {@link SQLRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public SQLRuntimeException(final SQLException cause) {
            super("ECL0072", asArray(getSql(cause), getRealMessage(cause), Integer.toString(cause.getErrorCode()), cause.getSQLState()), cause);
        }
    
        /**
         * <code>SQL</code>を返します。
         *
         * @param cause
         *            原因となった例外
         * @return <code>SQL</code>
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClSQLException.java

         *
         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の並び
         * @param cause
         *            原因となった例外
         */
        public ClSQLException(final String messageCode, final Object[] args, final Throwable cause) {
            this(messageCode, args, null, 0, cause, null);
        }
    
        /**
         * {@link ClSQLException}を作成します。
         *
         * @param messageCode
         *            メッセージコード
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java

         *
         * @param propertyName
         *            プロパティ名
         * @param value
         *            値
         * @param cause
         *            原因
         */
        public ConverterRuntimeException(final String propertyName, final Object value, final Throwable cause) {
            super("ECL0097", asArray(propertyName, value, cause), cause);
            this.propertyName = propertyName;
            this.value = value;
        }
    
        /**
         * プロパティ名を返します。
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java

         *            ターゲットクラス
         * @param propertyName
         *            プロパティ名
         * @param cause
         *            原因となった例外
         */
        public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) {
            super("ECL0059", asArray(targetClass.getName(), propertyName, cause), cause);
            this.targetClass = targetClass;
            this.propertyName = propertyName;
        }
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java

         * @param argTypes
         *            引数型の並び
         * @param cause
         *            原因となった例外
         */
        public NoSuchConstructorRuntimeException(final Class<?> targetClass, final Class<?>[] argTypes, final Throwable cause) {
            super("ECL0064", asArray(targetClass.getName(), MethodUtil.getSignature(targetClass.getSimpleName(), argTypes)), cause);
            this.targetClass = targetClass;
            this.argTypes = argTypes;
        }
    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)
  10. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

         *            メッセージコード
         * @param args
         *            引数の配列
         * @param cause
         *            原因となった例外
         */
        public ClIllegalArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) {
            super(MessageFormatter.getMessage(messageCode, args), cause);
            this.argName = argName;
            this.messageCode = messageCode;
            this.args = args;
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.7K bytes
    - Viewed (0)
Back to top