- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 84 for FessSystemException (0.18 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
import org.codelibs.fess.app.web.api.ApiResult.ApiUpdateResponse; import org.codelibs.fess.app.web.api.ApiResult.Status; import org.codelibs.fess.app.web.api.admin.FessApiAdminAction; import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.helper.SuggestHelper; import org.codelibs.fess.opensearch.config.exentity.BadWord; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.Execute;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java
*/ package org.codelibs.fess.exception; /** * An exception thrown when LDAP configuration is invalid. */ public class LdapConfigurationException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new LDAP configuration exception with the specified detail message. * * @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.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
} public void test_inheritanceFromFessSystemException() { // Test that LdapOperationException is properly inherited from FessSystemException LdapOperationException exception = new LdapOperationException("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 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
import org.apache.groovy.util.Maps; import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.serializer.DataSerializer; import org.codelibs.fess.crawler.util.FieldConfigs; import org.codelibs.fess.exception.FessSystemException; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; public class FessFileTransformerTest extends UnitFessTestCase { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
} public void test_instanceOfFessSystemException() { // Test that FessUserNotFoundException is an instance of FessSystemException FessUserNotFoundException exception = new FessUserNotFoundException("testuser"); 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 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/PluginException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception for plugin-related errors. */ public class PluginException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Creates a plugin exception with message and cause. * * @param message the error message * @param cause the cause
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/CommandExecutionException.java
/** * Exception thrown when command execution fails. * This exception indicates that an external command or process execution encountered an error. */ public class CommandExecutionException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor with error message. * @param message The error message describing the command execution failure. */
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/exception/ThemeException.java
/** * Exception thrown when theme-related operations fail. * This exception is used for errors during theme installation, uninstallation, or configuration. */ public class ThemeException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new ThemeException with the specified message and cause. * * @param message the exception 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/exception/ThumbnailGenerationException.java
/** * Exception thrown when thumbnail generation fails. * This exception is used for errors during thumbnail creation and processing. */ public class ThumbnailGenerationException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new ThumbnailGenerationException with the specified message and cause. * * @param message the exception message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/InvalidQueryException.java
* This exception is typically used in search contexts where a provided * query is malformed, contains invalid syntax, or violates query constraints. */ public class InvalidQueryException extends FessSystemException { /** Serial version UID for serialization */ private static final long serialVersionUID = 1L; /** Message code for localized error messages */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0)