Better way of handling e.printStackTrace() calls so that they can be handled by subclasses as necessary.
(Throwable t)
| 3317 | * handled by subclasses as necessary. |
| 3318 | */ |
| 3319 | protected void printStackTrace(Throwable t) { |
| 3320 | t.printStackTrace(); |
| 3321 | } |
| 3322 | |
| 3323 | |
| 3324 | /** |
no outgoing calls
no test coverage detected