org.mentawai.core.DSLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mentawai Show documentation
Show all versions of mentawai Show documentation
A Java full-stack web framework with programmatic configuration instead of XML and Annotations.
package org.mentawai.core;
/**
* A exception to be throw related to the execution of a script application manager.
*
* @author Rubem Azenha ([email protected])
*
*/
public class DSLException extends RuntimeException {
public DSLException(String message, Throwable cause) {
super(message, cause);
}
public DSLException(String message) {
super(message);
}
public DSLException(Throwable cause) {
super(cause);
}
}