如何检查异常的类型以及它们嵌套异常的类型?
2022-09-02 12:59:09
假设我捕获了一个类型的异常,但我只想对该异常执行某些操作,如果它具有类型的嵌套异常。AppException
StreamException
if (e instanceof AppException)
{
// only handle exception if it contains a
// nested exception of type 'StreamException'
如何检查嵌套?StreamException