BloomHttpException class

Exception thrown when telemetry transmission over HTTP fails.

Example:

if (response.statusCode >= 400) {
  throw BloomHttpException('Server error', statusCode: response.statusCode);
}
Implemented types

Constructors

BloomHttpException(String message, {int? statusCode, Uri? uri})
Creates a BloomHttpException.

Properties

hashCode int
The hash code for this object.
no setterinherited
message String
Description of the HTTP exception.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
statusCode int?
HTTP status code if returned by server.
final
uri Uri?
Target endpoint URI.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited