/// 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'; }