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

play.exceptions.PlayException Maven / Gradle / Ivy

There is a newer version: 2.6.3
Show newest version
package play.exceptions;

/**
 * The super class for all Play! exceptions
 */
public abstract class PlayException extends RuntimeException {

    protected PlayException() {
    }

    protected PlayException(String message) {
        super(message);
    }

    protected PlayException(Throwable cause) {
        super(cause);
    }

    protected PlayException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy