Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for Krause (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/exception/StorageException.java

    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public StorageException(final String message) {
            super(message);
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 970 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/ScriptEngineException.java

        public ScriptEngineException(final String message) {
            super(message);
        }
    
        public ScriptEngineException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 986 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/LdapOperationException.java

    public class LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public LdapOperationException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 990 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClientException.java

    public class SearchEngineClientException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchEngineClientException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public SearchEngineClientException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K 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