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 Nostr operations fail.
|
|
class NostrException implements Exception {
|
|
/// Error message.
|
|
final String message;
|
|
|
|
/// Creates a [NostrException] with the provided message.
|
|
NostrException(this.message);
|
|
|
|
@override
|
|
String toString() => 'NostrException: $message';
|
|
}
|
|
|