Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       * non-nullable {@code cause}, as many users expect to find one.
       */
      public UncheckedExecutionException(@CheckForNull String message, @CheckForNull Throwable cause) {
        super(message, cause);
      }
    
      /**
       * Creates a new instance with {@code null} as its detail message and the given cause. Prefer to
       * provide a non-nullable {@code cause}, as many users expect to find one.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 17:52:19 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

          Throwable cause, Class<X> exceptionClass) throws X {
        if (cause instanceof Error) {
          throw new ExecutionError((Error) cause);
        }
        if (cause instanceof RuntimeException) {
          throw new UncheckedExecutionException(cause);
        }
        throw newWithCause(exceptionClass, cause);
      }
    
      /*
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        NPE_IAE_OR_UOE() {
          @Override
          public boolean isExpectedType(Throwable cause) {
            return cause instanceof NullPointerException
                || cause instanceof IllegalArgumentException
                || cause instanceof UnsupportedOperationException;
          }
        };
    
        public abstract boolean isExpectedType(Throwable cause);
      }
    
      private static boolean annotatedTypeExists() {
        try {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 22.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

          super(input, exceptionType, fallback);
        }
    
        @Override
        ListenableFuture<? extends V> doFallback(
            AsyncFunction<? super X, ? extends V> fallback, X cause) throws Exception {
          ListenableFuture<? extends V> replacement = fallback.apply(cause);
          checkNotNull(
              replacement,
              "AsyncFunction.apply returned null instead of a Future. "
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 01 21:46:34 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  9. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 970 bytes
    - Viewed (0)
  10. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 990 bytes
    - Viewed (0)
Back to top