mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 13:23:45 +02:00
14 lines
244 B
Dart
14 lines
244 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
class AuthException implements Exception {
|
|
AuthException(this.message);
|
|
final String message;
|
|
|
|
@override
|
|
String toString() {
|
|
return message;
|
|
}
|
|
}
|