- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ScriptEngineException (0.14 sec)
-
src/main/java/org/codelibs/fess/exception/ScriptEngineException.java
*/ package org.codelibs.fess.exception; public class ScriptEngineException extends FessSystemException { private static final long serialVersionUID = 1L; public ScriptEngineException(final String message) { super(message); } public ScriptEngineException(final String message, final Throwable cause) { super(message, cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 986 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java
if (name == null) { throw new ScriptEngineException("script name is null."); } final ScriptEngine scriptEngine = scriptEngineMap.get(name.toLowerCase(Locale.ROOT)); if (scriptEngine != null) { return scriptEngine; } throw new ScriptEngineException(name + " is not found."); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2K bytes - Viewed (0)