Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CrawlingAccessException (0.17 sec)

  1. DataStoreCrawlingException.java

    License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:import org.codelibs.fess.crawler.exception.CrawlingAccessException; L19: L20:public class DataStoreCrawlingException extends CrawlingAccessException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: private final String url; L25: L26: private final boolean abort; L27: L28: public DataStoreCrawlingException(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
  2. CrawlerLogHelper.java

    n(final Object... objs) { L89: String failureUrlId = "?"; L90: final CrawlerContext crawlerContext = (CrawlerContext) objs[0]; L91: final UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1]; L92: final CrawlingAccessException cae = (CrawlingAccessException) objs[2]; L93: try { L94: Throwable t = cae; L95: if (t instanceof final MultipleCrawlingAccessException mcae) { L96: final Throwable[] causes = mcae.getCauses(); L97: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.3K bytes
Back to top