com.twitter.finatra.http.internal.exceptions

ExceptionManager

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

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

    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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def add[T <: ExceptionMapper[_]](implicit arg0: Manifest[T]): Unit

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

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

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

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

  21. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped