Package play.api

Examples of play.api.UsefulException


     * @param exception The server error.
     */
    @Override
    public F.Promise<Result> onServerError(RequestHeader request, Throwable exception) {
        try {
            UsefulException usefulException = throwableToUsefulException(exception);

            Logger.error(String.format("\n\n! @%s - Internal server error, for (%s) [%s] ->\n",
                            usefulException.id, request.method(), request.uri()),
                usefulException
            );
View Full Code Here

TOP

Related Classes of play.api.UsefulException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.