class AuthException implements Exception { final String message; AuthException(this.message); @override String toString() { return message; } }