Files
spicetools/api/resources/dart/spiceapi/src/exceptions.dart

12 lines
161 B
Dart

part of spiceapi;
class APIError implements Exception {
String cause;
APIError(this.cause);
@override
String toString() {
return this.cause;
}
}