Constructs a new Throwable that includes the current stack trace.
()
| 67 | * Constructs a new {@code Throwable} that includes the current stack trace. |
| 68 | */ |
| 69 | public Throwable() { |
| 70 | super(); |
| 71 | fillInStackTrace(); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Constructs a new {@code Throwable} with the current stack trace and the |
nothing calls this directly
no test coverage detected