Class

com.github.gigurra.serviceutils.twitter.service

ExceptionFilter

Related Doc: package service

Permalink

case class ExceptionFilter[T <: Throwable]()(implicit evidence$1: ClassTag[T]) extends SimpleFilter[Request, Response] with ServiceErrors with AutoLoggingOff with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AutoLoggingOff, ServiceErrors, Logging, SimpleFilter[Request, Response], Filter[Request, Response, Request, Response], (Request, Service[Request, Response]) ⇒ Future[Response], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExceptionFilter
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AutoLoggingOff
  7. ServiceErrors
  8. Logging
  9. SimpleFilter
  10. Filter
  11. Function2
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExceptionFilter()(implicit arg0: ClassTag[T])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def BadRequest[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  5. def Conflict[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  6. def InternalServerError[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  7. def NotFound[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  8. def Timeout[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  9. def TooManyRequests[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  10. def Unauthorized[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  11. def Unavailable[T](message: String, exc: Throwable = null): Future[T]

    Permalink
    Definition Classes
    ServiceErrors
  12. def agnosticAndThen(next: TypeAgnostic): Filter[Request, Response, Request, Response]

    Permalink
    Definition Classes
    Filter
  13. def andThen(factory: ServiceFactory[Request, Response]): ServiceFactory[Request, Response]

    Permalink
    Definition Classes
    Filter
  14. def andThen(f: (Request) ⇒ Future[Response]): (Request) ⇒ Future[Response]

    Permalink
    Definition Classes
    Filter
  15. def andThen(service: Service[Request, Response]): Service[Request, Response]

    Permalink
    Definition Classes
    Filter
  16. def andThen[Req2, Rep2](next: Filter[Request, Response, Req2, Rep2]): Filter[Request, Response, Req2, Rep2]

    Permalink
    Definition Classes
    Filter
  17. def andThenIf[Req2 >: Request, Rep2 <: Response](condAndFilter: (Boolean, Filter[Request, Response, Req2, Rep2])): Filter[Request, Response, Req2, Rep2]

    Permalink
    Definition Classes
    Filter
  18. def apply(request: Request, continue: Service[Request, Response]): Future[Response]

    Permalink
    Definition Classes
    ExceptionFilter → Filter → Function2
  19. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  20. def autoLog: Boolean

    Permalink
    Definition Classes
    AutoLoggingOff
  21. def badRequest(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  22. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. def conflict(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  24. def curried: (Request) ⇒ (Service[Request, Response]) ⇒ Future[Response]

    Permalink
    Definition Classes
    Function2
    Annotations
    @unspecialized()
  25. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  28. def internalServerError(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. def notFound(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  33. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. def serviceName: String

    Permalink
    Definition Classes
    ServiceErrors
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  37. def timeout(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  38. def toString(): String

    Permalink
    Definition Classes
    Function2 → AnyRef → Any
  39. def tooManyRequests(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  40. def transformToResponse(e: T, bug: Boolean): Future[Response]

    Permalink
  41. def tupled: ((Request, Service[Request, Response])) ⇒ Future[Response]

    Permalink
    Definition Classes
    Function2
    Annotations
    @unspecialized()
  42. def unauthorized(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  43. def unavailable(message: String, exc: Throwable = null): ServiceException

    Permalink
    Definition Classes
    ServiceErrors
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AutoLoggingOff

Inherited from ServiceErrors

Inherited from Logging

Inherited from SimpleFilter[Request, Response]

Inherited from Filter[Request, Response, Request, Response]

Inherited from (Request, Service[Request, Response]) ⇒ Future[Response]

Inherited from AnyRef

Inherited from Any

Ungrouped