Aidra Driver 1.3.5+68
Aidra Driver - Your path to green energy
Loading...
Searching...
No Matches
app_exception.dart
Go to the documentation of this file.
1abstract class AppException implements Exception {
2 final String message;
3 final String? code;
4 final dynamic details;
5
6 const AppException({
7 required this.message,
8 this.code,
9 this.details,
10 });
11
12 @override
13 String toString() {
14 return 'AppException: $message ${code != null ? '($code)' : ''} ${details != null ? '- $details' : ''}';
15 }
16}
class Partner String
final String message
Definition failures.dart:0