NotAServletEnvironmentException.java
/*
* Copyright 2023 Web-Legacy
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.tiles.request.jakarta.servlet;
/**
* Exception that indicates that a resource could not be used because it is not
* in a servlet environment.
*
* <p>Copied from Apache tiles-request-servlet 1.0.7 and adapted for
* Jakarta EE 9.</p>
*/
public class NotAServletEnvironmentException extends RuntimeException {
private static final long serialVersionUID = 6842625298829813103L;
/**
* Constructor.
*/
public NotAServletEnvironmentException() {
}
/**
* Constructor.
*
* @param message The detail message.
*/
public NotAServletEnvironmentException(String message) {
super(message);
}
/**
* Constructor.
*
* @param e The exception to be wrapped.
*/
public NotAServletEnvironmentException(Throwable e) {
super(e);
}
/**
* Constructor.
*
* @param message The detail message.
* @param e The exception to be wrapped.
*/
public NotAServletEnvironmentException(String message, Throwable e) {
super(message, e);
}
}