Class ApiException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- de.tsystems.mms.apm.performancesignature.dynatrace.rest.json.ApiException
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable
public class ApiException extends Exception
- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ApiException()ApiException(int code, String message)ApiException(int code, String message, Map<String,List<String>> responseHeaders, String responseBody)ApiException(int code, Map<String,List<String>> responseHeaders, String responseBody)ApiException(String message)ApiException(String message, int code, Map<String,List<String>> responseHeaders, String responseBody)ApiException(String message, Throwable throwable, int code, Map<String,List<String>> responseHeaders)ApiException(String message, Throwable throwable, int code, Map<String,List<String>> responseHeaders, String responseBody)ApiException(Throwable throwable) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()Get the HTTP status code.StringgetResponseBody()Get the HTTP response body.Map<String,List<String>>getResponseHeaders()Get the HTTP response headers.- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ApiException
public ApiException()
 
- 
ApiException
public ApiException(Throwable throwable)
 
- 
ApiException
public ApiException(String message)
 
- 
ApiException
public ApiException(String message, Throwable throwable, int code, Map<String,List<String>> responseHeaders, String responseBody)
 
- 
ApiException
public ApiException(String message, int code, Map<String,List<String>> responseHeaders, String responseBody)
 
- 
ApiException
public ApiException(String message, Throwable throwable, int code, Map<String,List<String>> responseHeaders)
 
- 
ApiException
public ApiException(int code, Map<String,List<String>> responseHeaders, String responseBody) 
- 
ApiException
public ApiException(int code, String message) 
 - 
 
- 
Method Detail
- 
getCode
public int getCode()
Get the HTTP status code.- Returns:
 - HTTP status code
 
 
- 
getResponseHeaders
public Map<String,List<String>> getResponseHeaders()
Get the HTTP response headers.- Returns:
 - A map of list of string
 
 
- 
getResponseBody
public String getResponseBody()
Get the HTTP response body.- Returns:
 - Response body in the form of string
 
 
 - 
 
 -