- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 553 for Caused (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MultipleCrawlingAccessException.java
* This exception holds an array of Throwable objects representing the individual causes. * It extends CrawlingAccessException and provides methods to print the stack traces of all causes. * */ public class MultipleCrawlingAccessException extends CrawlingAccessException { private static final long serialVersionUID = 1L; /** * The array of throwables that caused this exception. */ private final Throwable[] throwables;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
/** * Creates a new DataStoreCrawlingException with the specified URL, message, and cause. * The abort flag is set to false by default. * * @param url the URL where the crawling error occurred * @param message the error message * @param e the underlying exception that caused this error */ public DataStoreCrawlingException(final String url, final String message, final Exception e) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
RELEASE.md
* Fixes vulnerabilities caused by incomplete validation in `SparseAdd` ([CVE-2021-29609](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29609)) * Fixes vulnerabilities caused by incomplete validation in `SparseSparseMinimum` ([CVE-2021-29607](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29607)) * Fixes vulnerabilities caused by incomplete validation in `SparseReshape`
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/exception/QueryParseException.java
/** * Constructs a new QueryParseException with the specified ParseException as the cause. * * @param cause the ParseException that caused this exception */ public QueryParseException(final ParseException cause) { super(cause); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
super(message); } /** * Constructs a new SsoLoginException with the specified detail message and cause. * * @param message The detail message explaining the SSO login failure * @param e The underlying exception that caused this SSO login failure */ public SsoLoginException(final String message, final Exception e) { super(message, e); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
* * @param message The detailed error message explaining the cause of the exception */ public SsoProcessException(final String message) { super(message); } /** * Constructs a new SSO process exception with the specified detailed message and cause. * * @param message The detailed error message explaining the cause of the exception
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java
*/ public class ErrorForm { /** Map of form fields and their validation error messages */ public Map<String, String[]> fields = new HashMap<>(); /** Search query parameter that caused the error */ public String q; /** URL parameter associated with the error */ public String url; /** Number of results parameter */ public String num;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java
/** * {@link ChildUrlsException} is thrown when child URLs are found during crawling. * It extends {@link CrawlerSystemException} and holds a set of {@link RequestData} * representing the child URLs that caused the exception. * */ public class ChildUrlsException extends CrawlerSystemException { private static final long serialVersionUID = 1L; /** * The list of child URLs. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
/** * Constructs a WebApiException with the specified status code, message, and cause. * * @param statusCode The HTTP status code * @param message The detail message * @param cause The cause of this exception */ public WebApiException(final int statusCode, final String message, final Throwable cause) { super(message, cause); this.statusCode = statusCode; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
*/ private final String propertyName; /** * The value that caused the conversion error. */ private final Object value; /** * Constructs an instance. * * @param propertyName * Property name * @param value * Value * @param cause * Cause */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0)