3 lines
90 B
Dart
3 lines
90 B
Dart
Exception toException(Object e) {
|
|
return e is Exception ? e : Exception(e.toString());
|
|
} |