blob: 40e0a4183eb4743e841ee07f8e2a3f056e3ddd4e [file] [log] [blame]
import 'package:front_end/compilation_error.dart';
import 'package:source_span/source_span.dart' show SourceSpan;
/// An error that only contains a message and no error location.
class SimpleError implements CompilationError {
String get correction => null;
SourceSpan get span => null;
final String message;
SimpleError(this.message);
}