Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 350 for Exceptions (0.05 sec)

  1. AccessTokenHelperTest.java

    limitations under the License. L15: */ L16:package org.codelibs.fess.helper; L17: L18:import static org.junit.jupiter.api.Assertions.assertThrows; L19: L20:import java.util.ArrayList; L21:import java.util.List; L22: L23:import org.codelibs.fess.exception.InvalidAccessTokenException; L24:import org.codelibs.fess.unit.UnitFessTestCase; L25:import org.dbflute.utflute.mocklet.MockletHttpServletRequest; L26: L27:public class AccessTokenHelperTest extends UnitFessTestCase { L28: L29: protected static...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.1K bytes
  2. ServletRuntimeException.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 jakarta.servlet.ServletException; L19: L20:public class ServletRuntimeException extends RuntimeException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: public ServletRuntimeException(final ServletException...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      910 bytes
  3. SearchHelper.java

    java.util.concurrent.ExecutionException; L29:import java.util.function.Consumer; L30:import java.util.stream.Collectors; L31: L32:import org.apache.logging.log4j.LogManager; L33:import org.apache.logging.log4j.Logger; L34:import org.codelibs.core.exception.InterruptedRuntimeException; L35:import org.codelibs.core.lang.StringUtil; L36:import org.codelibs.fess.Constants; L37:import org.codelibs.fess.entity.QueryContext; L38:import org.codelibs.fess.entity.SearchRenderData; L39:import org.codelibs.fe...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      19.1K bytes
  4. CommandExecutionException.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 CommandExecutionException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public CommandExecutionException(final String message) { L23: super(message); L24: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      991 bytes
  5. PluginException.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 PluginException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public PluginException(final String message, final Throwable cause) { L23: super(message, cause);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      969 bytes
  6. ThemeException.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 ThemeException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public ThemeException(final String message, final Throwable cause) { L23: super(message, cause);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      966 bytes
  7. ApiAdminLabeltypeAction.java

    validateApi(body, messages -> {}); L87: body.crudMode = CrudMode.CREATE; L88: final LabelType labelType = getLabelType(body).map(entity -> { L89: try { L90: labelTypeService.store(entity); L91: } catch (final Exception e) { L92: logger.warn("Failed to process a request.", e); L93: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L94: } L95: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.8K bytes
  8. 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
  9. 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
  10. 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
Back to top