- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 357 for Exceptions (0.05 sec)
-
LabelTypeHelperTest.java
java.util.Locale; L19: L20:import org.codelibs.fess.unit.UnitFessTestCase; L21: L22:public class LabelTypeHelperTest extends UnitFessTestCase { L23: L24: private LabelTypeHelper labelTypeHelper; L25: L26: @Override L27: public void setUp() throws Exception { L28: super.setUp(); L29: labelTypeHelper = new LabelTypeHelper(); L30: } L31: L32: public void test_matchLocale() { L33: assertFalse(labelTypeHelper.matchLocale(Locale.ENGLISH, Locale.JAPANESE)); L34: assertFa...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.7K bytes -
FessCurtainFinallyHook.java
final Method method = clazz.getMethod("shutdownAll", (Class<?>[]) null); L41: method.invoke(null, (Object[]) null); L42: } catch (final ClassNotFoundException e) { L43: // ignore L44: } catch (final Exception e) { L45: logger.warn("Could not shutdown Commons HttpClient.", e); L46: } L47: } L48:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.7K 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 -
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 -
StorageException.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 StorageException extends FessSystemException { L19: private static final long serialVersionUID = 1L; L20: L21: public StorageException(final String message, final Throwable cause) { L22: super(message, cause);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 970 bytes -
BsFileConfigBhv.java
org.dbflute.bhv.readable.CBCall; L28:import org.dbflute.bhv.readable.EntityRowHandler; L29:import org.dbflute.cbean.ConditionBean; L30:import org.dbflute.cbean.result.ListResultBean; L31:import org.dbflute.cbean.result.PagingResultBean; L32:import org.dbflute.exception.IllegalBehaviorStateException; L33:import org.dbflute.optional.OptionalEntity; L34:import org.dbflute.util.DfTypeUtil; L35:import org.opensearch.action.bulk.BulkRequestBuilder; L36:import org.opensearch.action.delete.DeleteRequestBuilder; L37:import...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.8K bytes -
DictionaryException.java
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.dict; L17: L18:import org.codelibs.fess.exception.FessSystemException; L19: L20:public class DictionaryException extends FessSystemException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: public DictionaryException(final String message, final Throwable cause) { L25:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
DataStoreException.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 DataStoreException extends FessSystemException { L19: private static final long serialVersionUID = 1L; L20: L21: public DataStoreException(final String message, final Throwable cause) { L22: super(message, cause);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
JobProcessingException.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 JobProcessingException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public JobProcessingException(final Throwable e) { L23: super(e); L24: } L25: L26: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
FessIntervalController.java
final IntervalControlHelper intervalControlHelper = ComponentUtil.getIntervalControlHelper(); L61: intervalControlHelper.checkCrawlerStatus(); L62: intervalControlHelper.delayByRules(); L63: } catch (final Exception e) {} L64: L65: super.delayForWaitingNewUrl(); L66: } L67:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.4K bytes