All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mentawai.core.DSLException Maven / Gradle / Ivy

Go to download

A Java full-stack web framework with programmatic configuration instead of XML and Annotations.

There is a newer version: 2.5.6
Show newest version
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);
    }

    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy