Detailed Description
Exception that can be thrown by the Cloud Engines.
- See also
- Specification
Inheritance diagram for fiftyone.pipeline.cloudrequestengine.CloudRequestException:
Collaboration diagram for fiftyone.pipeline.cloudrequestengine.CloudRequestException:
Public Member Functions | |
| int | getHttpStatusCode () |
| Get the HTTP status code from the response. | |
| Map< String, List< String > > | getResponseHeaders () |
| Get all HTTP headers that were present in the response. | |
| CloudRequestException () | |
| Constructor. | |
| CloudRequestException (String message) | |
| Constructor. | |
| CloudRequestException (String message, Throwable cause) | |
| Constructor. | |
| CloudRequestException (Throwable cause) | |
| Constructor. | |
| CloudRequestException (String message, int httpStatusCode, Map< String, List< String > > responseHeaders) | |
| Constructor. | |
Public Member Functions inherited from fiftyone.pipeline.core.exceptions.PipelineDataException | |
| PipelineDataException () | |
| Constructor. | |
| PipelineDataException (String message) | |
| Constructor. | |
| PipelineDataException (String message, Throwable cause) | |
| Constructor. | |
| PipelineDataException (Throwable cause) | |
| Constructor. | |
Additional Inherited Members | |
Protected Member Functions inherited from fiftyone.pipeline.core.exceptions.PipelineDataException | |
| PipelineDataException (String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) | |
| Constructor. | |
Constructor & Destructor Documentation
◆ CloudRequestException() [1/4]
| fiftyone.pipeline.cloudrequestengine.CloudRequestException.CloudRequestException | ( | String | message | ) |
Constructor.
- Parameters
-
message the exception message
◆ CloudRequestException() [2/4]
| fiftyone.pipeline.cloudrequestengine.CloudRequestException.CloudRequestException | ( | String | message, |
| Throwable | cause ) |
Constructor.
- Parameters
-
message the exception message cause the exception which triggered this exception
◆ CloudRequestException() [3/4]
| fiftyone.pipeline.cloudrequestengine.CloudRequestException.CloudRequestException | ( | Throwable | cause | ) |
Constructor.
- Parameters
-
cause the exception which triggered this exception
◆ CloudRequestException() [4/4]
| fiftyone.pipeline.cloudrequestengine.CloudRequestException.CloudRequestException | ( | String | message, |
| int | httpStatusCode, | ||
| Map< String, List< String > > | responseHeaders ) |
Constructor.
- Parameters
-
message the exception message httpStatusCode the status code returned in the HTTP response responseHeaders the HTTP headers returned in the response
Member Function Documentation
◆ getHttpStatusCode()
| int fiftyone.pipeline.cloudrequestengine.CloudRequestException.getHttpStatusCode | ( | ) |
Get the HTTP status code from the response.
- Returns
- HTTP status code
◆ getResponseHeaders()
| Map< String, List< String > > fiftyone.pipeline.cloudrequestengine.CloudRequestException.getResponseHeaders | ( | ) |
Get all HTTP headers that were present in the response.
- Returns
- collection of HTTP response headers
