org.webpieces.webserver.impl.ControllerPageArgsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-webserver Show documentation
Show all versions of http-webserver Show documentation
The full webpieces server AS A library
package org.webpieces.webserver.impl;
public class ControllerPageArgsException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ControllerPageArgsException() {
super();
}
public ControllerPageArgsException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public ControllerPageArgsException(String message, Throwable cause) {
super(message, cause);
}
public ControllerPageArgsException(String message) {
super(message);
}
public ControllerPageArgsException(Throwable cause) {
super(cause);
}
}