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.
1
abstract
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
}
AppException
Definition
auth_exception.dart:3
String
class Partner String
message
final String message
Definition
failures.dart:0
lib
core
error
exceptipns
app_exception.dart
Generated by
1.16.1