- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for webApiException (0.14 sec)
-
src/main/java/org/codelibs/fess/exception/WebApiException.java
} /** * Constructs a WebApiException with the specified status code and message. * * @param statusCode The HTTP status code * @param message The detail message */ public WebApiException(final int statusCode, final String message) { super(message); this.statusCode = statusCode; } /** * Constructs a WebApiException with the specified status code and exception.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(WEB_API_EXCEPTION, new WebApiException(statusCode, e))); } /** * Validates the current request by checking for stored web API exceptions. * Throws any stored WebApiException if found. * * @throws WebApiException If a web API exception was previously stored */ public static void validate() {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0)