flutter_registration/lib/src/model/auth_exception.dart

14 lines
244 B
Dart
Raw Normal View History

2022-11-01 09:19:20 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
2022-09-20 15:51:22 +02:00
class AuthException implements Exception {
AuthException(this.message);
final String message;
@override
String toString() {
return message;
}
}