Example usage for org.apache.wicket RestartResponseException subclass-usage

List of usage examples for org.apache.wicket RestartResponseException subclass-usage

Introduction

In this page you can find the example usage for org.apache.wicket RestartResponseException subclass-usage.

Usage

From source file com.gitblit.wicket.GitblitRedirectException.java

/**
 * This exception bypasses the servlet container rewriting relative redirect
 * urls.  The container can and does decode the carefully crafted %2F path
 * separators on a redirect.  :(  Bad, bad servlet container.
 *
 * org.eclipse.jetty.server.Response#L447: String path=uri.getDecodedPath();

From source file nl.knaw.dans.common.wicket.exceptions.InternalWebError.java

public class InternalWebError extends RestartResponseException {
    private static final long serialVersionUID = 3581913687647975402L;

    public InternalWebError() {
        super(Application.get().getApplicationSettings().getInternalErrorPage());
    }