| Index: lib/core/errors.dart
|
| diff --git a/lib/core/errors.dart b/lib/core/errors.dart
|
| index 85e9f937181675ac573104c004fd35b764896051..cef165e44728c97eb978ecbc1e66d28af62ca70f 100644
|
| --- a/lib/core/errors.dart
|
| +++ b/lib/core/errors.dart
|
| @@ -46,7 +46,10 @@ class FallThroughError implements Error {
|
| const FallThroughError();
|
| }
|
|
|
| -class AbstractClassInstantiationError {
|
| +class AbstractClassInstantiationError implements Error {
|
| + final String _className;
|
| + const AbstractClassInstantiationError(String this._className);
|
| + String toString() => "Cannot instantiate abstract class: '$_className'";
|
| }
|
|
|
| /**
|
|
|