Add toString to ExecError

This commit is contained in:
Hank Grabowski 2022-01-14 20:10:24 -05:00
parent 1cd010ea02
commit fbd811c745

View file

@ -3,6 +3,11 @@ class ExecError {
final String message;
ExecError({required this.type, this.message = ''});
@override
String toString() {
return 'ExecError{type: $type, message: $message}';
}
}
enum ErrorType {