Files
sendico/frontend/pshared/lib/provider/exception.dart
2025-11-13 15:06:15 +03:00

3 lines
90 B
Dart

Exception toException(Object e) {
return e is Exception ? e : Exception(e.toString());
}