AirtableException class

A custom exception class for handling errors related to Airtable operations.

The AirtableException class implements Dart's Exception interface and provides additional context by including an error message and optional details.

Implemented types

Constructors

AirtableException({required String message, String? details})
Creates an instance of AirtableException with the given message and optional details.

Properties

details String?
Additional details about the error, if available.
final
hashCode int
The hash code for this object.
no setterinherited
message String
A brief description of the error that occurred.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

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

Operators

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