Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExceptionThrown (0.06 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                this.projectNames = projectSelectors;
            }
        }
    
        static class ExceptionThrown implements ExpectedResult {
            final Class<? extends Throwable> expected;
            final String partOfMessage;
    
            ExceptionThrown(final Class<? extends Throwable> expected, final String partOfMessage) {
                this.expected = expected;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 20:39:03 UTC 2025
    - 28K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            Thread.sleep(100);
    
            boolean exceptionThrown = false;
            String exceptionMessage = null;
            try {
                suggester.switchIndex();
                fail("Should throw SuggesterException for unexpected update indices count");
            } catch (SuggesterException e) {
                exceptionThrown = true;
                exceptionMessage = e.getMessage();
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Closer.java

        throw new RuntimeException(e);
      }
    
      /**
       * Closes all {@code Closeable} instances that have been added to this {@code Closer}. If an
       * exception was thrown in the try block and passed to one of the {@code exceptionThrown} methods,
       * any exceptions thrown when attempting to close a closeable will be suppressed. Otherwise, the
       * <i>first</i> exception to be thrown from an attempt to close a closeable will be thrown and any
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top