Diagnostic resource to generate error response. The same error response is used in other parts of the API when a request fails.
Generate an error report.
| name | type | description | default | constraints | 
|---|---|---|---|---|
| message | query | Message to return in ErrorReport#message | This is a diagnostic error response | |
| status | query | HTTP status to return. When invalid code given "500" (Response.Status#INTERNAL_SERVER_ERROR) is used. | 404 | int | 
| media type | data type | description | 
|---|---|---|
| application/json | ErrorReport (JSON) | Error response normally returned upon errors | 
GET /generate-error-response
Content-Type: */*
Accept: application/json
                
...
                
              
            
HTTP/1.1 200 OK
Content-Type: application/json
                
{
  "statusCode" : 12345,
  "statusReasonPhrase" : "...",
  "statusClass" : "...",
  "message" : "...",
  "exceptionMessage" : "...",
  "exceptionStackTrace" : "..."
}