Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Krause (0.15 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 May 03 20:58:11 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 May 03 20:58:11 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 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 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 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/ParseRuntimeException.java

        private static final long serialVersionUID = -5237329676597387063L;
    
        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public ParseRuntimeException(final ParseException cause) {
            super("ECL0050", asArray(cause), cause);
        }
    
        /**
         * {@link ParseRuntimeException}を作成します。
         *
         * @param s
         *            解析できなかった文字列
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/IllegalAccessRuntimeException.java

         *
         * @param targetClass
         *            ターゲットクラス
         * @param cause
         *            原因となった例外
         */
        public IllegalAccessRuntimeException(final Class<?> targetClass, final IllegalAccessException cause) {
            super("ECL0042", asArray(targetClass.getName(), cause), cause);
            this.targetClass = targetClass;
        }
    
        /**
         * ターゲットクラスを返します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java

        private static final long serialVersionUID = 1L;
    
        public UnsupportedEncodingRuntimeException(final UnsupportedEncodingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java

         *            ターゲットクラス
         * @param fieldName
         *            フィールド名
         * @param cause
         *            原因となった例外
         */
        public NoSuchFieldRuntimeException(final Class<?> targetClass, final String fieldName, final Throwable cause) {
            super("ECL0070", asArray(targetClass.getName(), fieldName), cause);
            this.targetClass = targetClass;
            this.fieldName = fieldName;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

        protected final transient Field targetField;
    
        public BeanFieldSetAccessibleFailureException(final Class<?> componentClass, final Field targetField, final Throwable cause) {
            super("ECL0115", new Object[] { targetField }, cause);
            this.targetClass = componentClass;
            this.targetField = targetField;
        }
    
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Fri Mar 08 13:23:29 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

        protected final transient Method targetMethod;
    
        public BeanMethodSetAccessibleFailureException(final Class<?> componentClass, final Method targetMethod, final Throwable cause) {
            super("ECL0116", new Object[] { targetMethod }, cause);
            this.targetClass = componentClass;
            this.targetMethod = targetMethod;
        }
    
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Fri Mar 08 13:23:29 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top