Java - Throwable to Exception

后端 未结 5 1188
清酒与你
清酒与你 2021-02-03 20:26

I am currently using the play2 framework.

I have several classes which are throwing exceptions but play2s global onError handler uses throwable

5条回答
  •  悲&欢浪女
    2021-02-03 21:17

    Throwable is a class which Exception – and consequently all subclasses thereof – subclasses. There's nothing stopping you from using instanceof on a Throwable.

提交回复
热议问题