(int ignoreFrames)
| 11 | |
| 12 | public class SourceCode { |
| 13 | public static String tryGet(int ignoreFrames) { |
| 14 | return tryGet(new Exception(), ignoreFrames + 1); |
| 15 | } |
| 16 | |
| 17 | public static String tryGet(Throwable e, int ignoreFrames) { |
| 18 | StackTraceElement[] stackTrace = e.getStackTrace(); |
no test coverage detected