(Throwable throwable)
| 158 | } |
| 159 | |
| 160 | public static String exceptionToString(Throwable throwable) { |
| 161 | StringWriter sw = new StringWriter(); |
| 162 | PrintWriter pw = new PrintWriter(sw); |
| 163 | throwable.printStackTrace(pw); |
| 164 | return sw.toString(); |
| 165 | } |
| 166 | |
| 167 | public static Boolean isUnAuthResponse(IHttpRequestResponse httpRequestResponse) { |
| 168 | short statusCode = BurpExtender.getHelpers().analyzeResponse(httpRequestResponse.getResponse()).getStatusCode(); |
no outgoing calls
no test coverage detected