fediverse-archiving-tools/bin/exec_error.dart

12 lines
180 B
Dart
Raw Normal View History

class ExecError {
final ErrorType type;
final String message;
ExecError({required this.type, this.message = ''});
}
enum ErrorType {
authentication,
missingEndpoint,
}