Packages

c

play.api.http

HtmlOrJsonHttpErrorHandler

class HtmlOrJsonHttpErrorHandler extends PreferredMediaTypeHttpErrorHandler

An HttpErrorHandler that uses either HTML or JSON in the response depending on the client's preference.

Source
HttpErrorHandler.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HtmlOrJsonHttpErrorHandler
  2. PreferredMediaTypeHttpErrorHandler
  3. HttpErrorHandler
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HtmlOrJsonHttpErrorHandler(htmlHandler: DefaultHttpErrorHandler, jsonHandler: JsonHttpErrorHandler)
    Annotations
    @Inject()

Value Members

  1. val handlers: (String, HttpErrorHandler)*
  2. def onClientError(request: RequestHeader, statusCode: Int, message: String): Future[Result]

    Invoked when a client error occurs, that is, an error in the 4xx series.

    Invoked when a client error occurs, that is, an error in the 4xx series.

    request

    The request that caused the client error.

    statusCode

    The error status code. Must be greater or equal to 400, and less than 500.

    message

    The error message.

    Definition Classes
    PreferredMediaTypeHttpErrorHandlerHttpErrorHandler
  3. def onServerError(request: RequestHeader, exception: Throwable): Future[Result]

    Invoked when a server error occurs.

    Invoked when a server error occurs.

    request

    The request that triggered the server error.

    exception

    The server error.

    Definition Classes
    PreferredMediaTypeHttpErrorHandlerHttpErrorHandler