nyxx/nyxx.interactions/lib/src/Exceptions/AlreadyResponded.dart
2021-03-29 21:17:34 +02:00

14 lines
422 B
Dart

part of nyxx_interactions;
/// Thrown when you have already responded to an interaction
class AlreadyResponded implements Error {
/// Returns a string representation of this object.
@override
String toString() =>
"AlreadyRespondedError: Interaction has already been acknowledged, you can now only send channel messages (with/without source)";
@override
StackTrace? get stackTrace => StackTrace.empty;
}