Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 350 for Exceptions (0.15 sec)

  1. ApiAdminFailureurlAction.java

    failureUrlService.getFailureUrl(id).ifPresent(entity -> { L82: try { L83: failureUrlService.delete(entity); L84: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L85: } catch (final Exception e) { L86: logger.warn("Failed to process a request.", e); L87: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToDeleteCrudTable(GLOBAL, buildThrowableMessage(e))); L88: } L89: }).orElse(()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.9K bytes
  2. AdminRelatedcontentAction.java

    getRelatedContent(form).ifPresent(entity -> { L188: try { L189: relatedContentService.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.2K bytes
  3. AdminBoostdocAction.java

    getBoostDocumentRule(form).ifPresent(entity -> { L188: try { L189: boostDocumentRuleService.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.1K bytes
  4. FessCrawlerThread.java

    org.codelibs.fess.es.client.SearchEngineClient; L47:import org.codelibs.fess.es.config.exentity.CrawlingConfig; L48:import org.codelibs.fess.es.config.exentity.CrawlingConfig.ConfigName; L49:import org.codelibs.fess.exception.ContainerNotAvailableException; L50:import org.codelibs.fess.exception.ContentNotFoundException; L51:import org.codelibs.fess.helper.CrawlingConfigHelper; L52:import org.codelibs.fess.helper.CrawlingInfoHelper; L53:import org.codelibs.fess.helper.DuplicateHostHelper; L54:import o...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      14.6K bytes
  5. UnsupportedSearchException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class UnsupportedSearchException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public UnsupportedSearchException(final String msg) { L23: super(msg); L24: } L25:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      871 bytes
  6. SearchEngineApiManager.java

    org.codelibs.curl.Curl.Method; L32:import org.codelibs.curl.CurlRequest; L33:import org.codelibs.curl.CurlResponse; L34:import org.codelibs.fess.Constants; L35:import org.codelibs.fess.api.BaseApiManager; L36:import org.codelibs.fess.exception.FessSystemException; L37:import org.codelibs.fess.exception.WebApiException; L38:import org.codelibs.fess.mylasta.action.FessUserBean; L39:import org.codelibs.fess.util.ComponentUtil; L40:import org.codelibs.fess.util.ResourceUtil; L41:import org.lastaflute.web.servlet.request.RequestManager;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Aug 15 08:29:24 UTC 2024
      11.3K bytes
  7. RoleQueryHelper.java

    org.codelibs.core.crypto.CachedCipher; L30:import org.codelibs.core.lang.StringUtil; L31:import org.codelibs.fess.app.service.AccessTokenService; L32:import org.codelibs.fess.entity.SearchRequestParams.SearchRequestType; L33:import org.codelibs.fess.exception.InvalidAccessTokenException; L34:import org.codelibs.fess.mylasta.action.FessUserBean; L35:import org.codelibs.fess.mylasta.direction.FessConfig; L36:import org.codelibs.fess.util.ComponentUtil; L37:import org.lastaflute.web.login.LoginManager; L38:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      11.5K bytes
  8. AggregateLogJob.java

    final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper(); L29: L30: final StringBuilder resultBuf = new StringBuilder(); L31: L32: try { L33: searchLogHelper.storeSearchLog(); L34: } catch (final Exception e) { L35: logger.error("Failed to store a search log.", e); L36: resultBuf.append(e.getMessage()).append("\n"); L37: } L38: L39: return resultBuf.toString(); L40: } L41: L42:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
  9. badRequest.jsp

    src="${fe:url('/js/bootstrap.min.js')}"></script> L31: <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script> L32: <script type="text/javascript" src="${fe:url('/js/search.js')}"></script> L33:</body> L34:</html> L35:<% }catch(Exception e){session.invalidate();} %>...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Sat Oct 26 01:07:52 UTC 2024
      1.4K bytes
  10. QueryParseException.java

    "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:import org.apache.lucene.queryparser.classic.ParseException; L19: L20:public class QueryParseException extends FessSystemException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: public QueryParseException(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      931 bytes
Back to top