- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 84 for FessSystemException (0.06 sec)
-
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
} public void test_exceptionInheritance() { // Test that JobNotFoundException properly extends FessSystemException JobNotFoundException exception = new JobNotFoundException("test"); assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
import java.util.regex.Pattern; import org.apache.commons.lang3.StringUtils; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.stream.StreamUtil; import org.codelibs.fess.exception.FessSystemException; import org.w3c.dom.Node; /** * Represents a tag configuration for pruning HTML content during document processing.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java
} public void test_inheritance_fromFessSystemException() { // Test that WebApiException is a subclass of FessSystemException WebApiException exception = new WebApiException(500, "Test"); assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java
} public void test_inheritance() { // Test that SsoLoginException extends FessSystemException SsoLoginException exception = new SsoLoginException("Test"); assertTrue(exception instanceof FessSystemException); assertTrue(exception instanceof RuntimeException); assertTrue(exception instanceof Exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
import org.codelibs.core.misc.Pair; import org.codelibs.fess.Constants; import org.codelibs.fess.annotation.Secured; import org.codelibs.fess.app.web.base.FessAdminAction; import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScriptEngineException.java
*/ package org.codelibs.fess.exception; /** * This exception is thrown when a script engine error occurs. */ public class ScriptEngineException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message The exception message. */ public ScriptEngineException(final String message) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java
* This exception is typically thrown during authentication or user lookup operations * when the specified user does not exist in the system. */ public class FessUserNotFoundException extends FessSystemException { /** Serial version UID for serialization compatibility */ private static final long serialVersionUID = 1L; /** * Constructs a new FessUserNotFoundException with the specified username.
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/LdapOperationException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * An exception thrown when an LDAP operation fails. */ public class LdapOperationException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new LDAP operation exception with the specified detail message and cause. * * @param message The detail message.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java
* @throws FessSystemException if no suitable extractor can be found */ @Override protected Extractor getExtractor(final ResponseData responseData) { final ExtractorFactory extractorFactory = ComponentUtil.getExtractorFactory(); if (extractorFactory == null) { throw new FessSystemException("Could not find extractorFactory."); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java
*/ package org.codelibs.fess.exception; /** * This exception is thrown when the requested result offset exceeds the limit. */ public class ResultOffsetExceededException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message The exception message. */ public ResultOffsetExceededException(final String message) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0)