Class

com.twitter.finatra.http.internal.exceptions

ExceptionManager

Related Doc: package exceptions

Permalink

class ExceptionManager extends AnyRef

A class to register ExceptionMappers and handle exceptions.

Given some exception, an ExceptionManager will find an ExceptionMapper to handle that particular class of exceptions. If the mapper for that exception isn't registered, ExceptionManager will try its parent class, and so on, until it reaches the Throwable class. At that point the DefaultExceptionMapper will run which should be defined over all Throwables.

Annotations
@Singleton()
Exceptions thrown

java.lang.IllegalStateException when an exception type is registered twice. Note: When searching for the parent exception mapper, it would be nice to traverse the entire class linearization so it works for traits/mixins too [1]. Unfortunately, implementing this would require a lot more reflection and it might not be threadsafe [2]. Doing it in Scala 2.11 might be easier and safer. [1] http://stackoverflow.com/questions/15623498/handy-ways-to-show-linearization-of-a-class [2] http://docs.scala-lang.org/overviews/reflection/thread-safety.html

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ExceptionManager
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExceptionManager(injector: Injector, defaultExceptionMapper: DefaultExceptionMapper)

    Permalink

    Annotations
    @Inject()
    Exceptions thrown

    java.lang.IllegalStateException when an exception type is registered twice. Note: When searching for the parent exception mapper, it would be nice to traverse the entire class linearization so it works for traits/mixins too [1]. Unfortunately, implementing this would require a lot more reflection and it might not be threadsafe [2]. Doing it in Scala 2.11 might be easier and safer. [1] http://stackoverflow.com/questions/15623498/handy-ways-to-show-linearization-of-a-class [2] http://docs.scala-lang.org/overviews/reflection/thread-safety.html

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 add[T <: ExceptionMapper[_]](implicit arg0: Manifest[T]): Unit

    Permalink
  5. def add[T <: Throwable](mapper: ExceptionMapper[T])(implicit arg0: Manifest[T]): Unit

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toResponse(request: Request, throwable: Throwable): Response

    Permalink
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped