QueenFruits/Mobile Commerce/lib/core/errors/exceptions.dart

8 lines
149 B
Dart

class ServerException implements Exception {
final String message;
ServerException(this.message);
@override
String toString() => message;
}