- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 357 for Exceptions (0.06 sec)
-
FessEnv.java
L56: * @return The value of found property. (NotNull: if not found, exception) L57: * @throws ConfigPropertyNotFoundException When the property is not found. L58: */ L59: String get(String propertyKey); L60: L61: /** L62: * Is the property true? L63: * @param propertyKey The key of the property which is boolean type. (NotNull) L64: * @return The determination, true or false. (if not found, exception) L65: * @throws ConfigPropertyNotFoundException When the property...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
AdminLogAction.java
il; L33:import org.codelibs.fess.annotation.Secured; L34:import org.codelibs.fess.app.web.base.FessAdminAction; L35:import org.codelibs.fess.exception.FessSystemException; L36:import org.codelibs.fess.helper.SystemHelper; L37:import org.codelibs.fess.util.ComponentUtil; L38:import org.codelibs.fess.util.RenderDataUtil; L39:import org.lastaflute.di.exception.IORuntimeException; L40:import org.lastaflute.web.Execute; L41:import org.lastaflute.web.response.ActionResponse; L42:import org.lastaflute....github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.7K bytes -
ApiAdminUserAction.java
BAL); L73: }); L74: return null; L75: }); L76: try { L77: userService.store(entity); L78: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L79: } catch (final Exception e) { L80: logger.warn("Failed to process a request.", e); L81: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L82: } L83: return asJson(new...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.8K bytes -
AdminUpgradeAction.java
upgradeFrom14_16(); L230: upgradeFromAll(); L231: L232: saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL)); L233: L234: systemHelper.reloadConfiguration(); L235: } catch (final Exception e) { L236: logger.warn("Failed to upgrade data.", e); L237: saveError(messages -> messages.addErrorsFailedToUpgradeFrom(GLOBAL, VERSION_13_0, e.getLocalizedMessage())); L238: } L239: } else if (VER...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 54K bytes -
ApiAdminRelatedqueryAction.java
-> {}); L82: body.crudMode = CrudMode.CREATE; L83: final RelatedQuery relatedQuery = getRelatedQuery(body).map(entity -> { L84: try { L85: relatedQueryService.store(entity); L86: } catch (final Exception e) { L87: logger.warn("Failed to process a request.", e); L88: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L89: } L90: return...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.6K bytes -
FessActionDefTest.java
void test_nonActionExtendsAction() throws Exception { L37: policeStoryOfJavaClassChase(new NonActionExtendsActionPolice()); L38: assertTrue(true); L39: } L40: L41: public void test_nonWebHasWebReference() throws Exception { L42: policeStoryOfJavaClassChase(new NonWebHasWebReferencePolice()); L43: assertTrue(true); L44: } L45: L46: public void test_webPackageNinjaReferencePolice() throws Exception { L47: policeStoryOfJavaClassChase(new WebPackageNinjaReferencePolice()...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
UpgradeUtil.java
org.codelibs.fess.util; L17: L18:import java.io.File; L19:import java.util.Map; L20:import java.util.function.Consumer; L21: L22:import org.apache.logging.log4j.LogManager; L23:import org.apache.logging.log4j.Logger; L24:import org.codelibs.core.exception.ResourceNotFoundRuntimeException; L25:import org.codelibs.core.io.FileUtil; L26:import org.codelibs.curl.CurlResponse; L27:import org.codelibs.fess.mylasta.direction.FessConfig; L28:import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.1K bytes -
AdminPluginAction.java
il; L38:import org.codelibs.fess.util.RenderDataUtil; L39:import org.lastaflute.web.Execute; L40:import org.lastaflute.web.response.HtmlResponse; L41:import org.lastaflute.web.ruts.process.ActionRuntime; L42:import org.lastaflute.web.validation.exception.ValidationErrorException; L43: L44:public class AdminPluginAction extends FessAdminAction { L45: L46: public static final String ROLE = "admin-plugin"; L47: L48: private static final Logger logger = LogManager.getLogger(AdminPluginAction.class);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
CrawlingInfoHelper.java
nt.SearchEngineClient; L37:import org.codelibs.fess.es.config.exentity.CrawlingConfig; L38:import org.codelibs.fess.es.config.exentity.CrawlingInfo; L39:import org.codelibs.fess.es.config.exentity.CrawlingInfoParam; L40:import org.codelibs.fess.exception.FessSystemException; L41:import org.codelibs.fess.mylasta.direction.FessConfig; L42:import org.codelibs.fess.util.ComponentUtil; L43:import org.opensearch.index.query.QueryBuilders; L44:import org.opensearch.search.aggregations.AggregationBuilders;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.6K bytes -
AdminDuplicatehostAction.java
getDuplicateHost(form).ifPresent(entity -> { L188: try { L189: duplicateHostService.store(entity); L190: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L191: } catch (final Exception e) { L192: logger.warn("Failed to process a request.", e); L193: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L194: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.3K bytes