You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/// Exception thrown when sync operations fail.
|
|
class SyncException implements Exception {
|
|
/// Error message.
|
|
final String message;
|
|
|
|
/// Creates a [SyncException] with the provided message.
|
|
SyncException(this.message);
|
|
|
|
@override
|
|
String toString() => 'SyncException: $message';
|
|
}
|
|
|