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 optionaldetails
.
Properties
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