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

play.exceptions.ContinuationsException Maven / Gradle / Ivy

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

public class ContinuationsException extends PlayException {

    public ContinuationsException(String message) {
        super(message);
    }

    @Override
    public String getErrorTitle() {
        return "await/Continuations error";
    }

    @Override
    public String getErrorDescription() {
        return String.format("A await/Continuations error occured : %s", getMessage());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy