Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for because (0.04 sec)

  1. SearchApiManager.java

    _ERROR, e); L472: } L473: } L474: L475: protected String detailedMessage(final Throwable t) { L476: if (t == null) { L477: return "Unknown"; L478: } L479: Throwable target = t; L480: if (target.getCause() == null) { L481: return target.getClass().getSimpleName() + "[" + target.getMessage() + "]"; L482: } L483: final StringBuilder sb = new StringBuilder(); L484: while (target != null) { L485: sb.append(...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  2. SearchEngineClient.java

    } catch (final Exception e) { L813: cause = e; L814: } L815: if (cause instanceof OpenSearchStatusException) { L816: final RestStatus status = ((OpenSearchStatusException) cause).status(); L817: switch (status) { L818: case UNAUTHORIZED: L819: logger.warn("[{}] Unauthorized access: {}", i, SystemUtil.getSearchEngineHttpAddress(), cause); L820: break; L821: default:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Oct 20 02:08:03 UTC 2024
      86.1K bytes
Back to top