Lines Matching refs:Exception
7 "Exception(Exception())" => new Exception("outer", 0, new Exception("inner")),
9 "Error(Exception())" => new Error("outer", 0, new Exception("inner")),
10 "Exception(Error())" => new Exception("outer", 0, new Error("inner"))
25 ---- Exception(Exception()) ----
26 before: Exception.previous == Exception
27 after : Exception.previous == Exception
31 ---- Error(Exception()) ----
32 before: Error.previous == Exception
33 after : Error.previous == Exception
34 ---- Exception(Error()) ----
35 before: Exception.previous == Error
36 after : Exception.previous == Error