- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for FessSystemException (0.84 sec)
-
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
* @throws FessSystemException if no suitable extractor factory 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.5K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
* of SSO authentication and authorization processes. It extends FessSystemException * to provide consistent error handling within the Fess system for SSO-related * processing failures such as token validation errors, communication failures * with SSO providers, or configuration issues. */ public class SsoProcessException extends FessSystemException { private static final long serialVersionUID = 1L; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 08:04:23 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
* @return an array containing [hour, minute] * @throws FessSystemException if the time format is invalid */ protected static int[] parseTime(final String time) { final String[] froms = time.split(":"); if (froms.length != 2) { throw new FessSystemException("Invalid time format: " + time + ". Expected format: HH:MM"); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 12:34:02 UTC 2025 - 10K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.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 messageRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 08:04:23 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
* @throws FessSystemException if no access token is available */ public String getServerPath() { return getSessionManager().getAttribute(Constants.SEARCH_ENGINE_API_ACCESS_TOKEN, String.class) .map(token -> ADMIN_SERVER + token) .orElseThrow(() -> new FessSystemException("Cannot create an access token.")); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
* including configuration errors, authentication token validation failures, * communication issues with SSO providers, and other SSO-related problems. */ public class SsoLoginException extends FessSystemException { /** Serial version UID for serialization compatibility. */ private static final long serialVersionUID = 1L; /** * Constructs a new SsoLoginException with the specified detail message. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Wed Nov 19 08:04:23 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
final String docId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldId(), String.class); throw new FessSystemException("configId is null in document. docId: " + docId); } if (configId.length() < 2) { throw new FessSystemException("Invalid configId length: " + configId + ". ConfigId must be at least 2 characters long."); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0)