express.ExpressException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-express Show documentation
Show all versions of java-express Show documentation
HTTP Framework based on expressjs, no dependencies, simple usage.
The newest version!
package express;
/**
* @author Simon Reinisch
* Exception for express own errors.
*/
public class ExpressException extends RuntimeException {
/**
* Constructs a new exception with an empty detail message.
*/
public ExpressException() {}
/**
* Constructs a new exception with the specified detail message.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the getMessage() method.
*/
public ExpressException(String message) {
super(message);
}
}