- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 1,205 for Exceptions (0.11 sec)
-
UnitFessTestCase.java
L21:public abstract class UnitFessTestCase extends WebContainerTestCase { L22: @Override L23: protected String prepareConfigFile() { L24: return "test_app.xml"; L25: } L26: L27: @Override L28: public void tearDown() throws Exception { L29: ComponentUtil.setFessConfig(null); L30: super.tearDown(); L31: } L32:}...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
InvalidAccessTokenException.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 InvalidAccessTokenException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: private final String type; L23: L24: public InvalidAccessTokenException(final String type,...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1016 bytes -
SearchQueryException.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 SearchQueryException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public SearchQueryException(final String message, final Throwable cause) { L23: super(message,...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
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 -
AdminFileauthAction.java
getFileAuthentication(form).ifPresent(entity -> { L203: try { L204: fileAuthenticationService.store(entity); L205: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L206: } catch (final Exception e) { L207: logger.warn("Failed to process a request.", e); L208: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L209: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.5K bytes -
AdminReqheaderAction.java
getRequestHeader(form).ifPresent(entity -> { L201: try { L202: requestHeaderService.store(entity); L203: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L204: } catch (final Exception e) { L205: logger.warn("Failed to process a request.", e); L206: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L207: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 14.6K bytes -
FessPropTest.java
FullstopCharsAsArray(); L143: assertEquals(2, chars.length); L144: assertEquals(32, chars[0]); L145: assertEquals(12288, chars[1]); L146: } L147: L148: public void test_getCrawlerDocumentHtmlPrunedTagsAsArray() throws Exception { L149: FessProp.propMap.clear(); L150: FessConfig fessConfig = new FessConfig.SimpleImpl() { L151: @Override L152: public String getCrawlerDocumentHtmlPrunedTags() { L153: return "script,div#ma...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12.7K bytes -
FessFileTransformer.java
L19:import org.apache.logging.log4j.Logger; L20:import org.codelibs.fess.crawler.entity.ResponseData; L21:import org.codelibs.fess.crawler.extractor.Extractor; L22:import org.codelibs.fess.crawler.extractor.ExtractorFactory; L23:import org.codelibs.fess.exception.FessSystemException; L24:import org.codelibs.fess.mylasta.direction.FessConfig; L25:import org.codelibs.fess.util.ComponentUtil; L26: L27:import jakarta.annotation.PostConstruct; L28: L29:public class FessFileTransformer extends AbstractFessFileTransformer...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 2.2K bytes -
FessListedClassificationProvider.java
org.dbflute.jdbc.ClassificationMeta; L21:import org.dbflute.optional.OptionalObject; L22:import org.dbflute.optional.OptionalThing; L23:import org.lastaflute.db.dbflute.classification.ListedClassificationProvider; L24:import org.lastaflute.db.dbflute.exception.ProvidedClassificationNotFoundException; L25: L26:/** L27: * @author jflute L28: */ L29:public class FessListedClassificationProvider implements ListedClassificationProvider { L30: L31: @Override L32: public ClassificationMeta provide(final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
VerifyException.java
language governing permissions and limitations under L12: * the License. L13: */ L14: L15:package com.google.common.base; L16: L17:import com.google.common.annotations.GwtCompatible; L18:import javax.annotation.CheckForNull; L19: L20:/** L21: * Exception thrown upon the failure of a <a L22: * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">verification check</a>, L23: * including those performed by the convenience methods of the {@link Verify} class. L24: * L25: * @since...github.com/google/guava/android/guava/src/com/g...Mon May 17 14:07:47 UTC 2021 1.8K bytes