File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed
Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ import 'package:exception_templates/exception_templates.dart' ;
2+
3+ /// This type of error is thrown if an attempt at reading a `DartObject`
4+ /// failed because a suitable `Decoder` is not registered with `GenericReader` .
5+ abstract class DecoderNotFound extends ErrorType {}
Original file line number Diff line number Diff line change 1+ import 'package:exception_templates/exception_templates.dart' ;
2+
3+ /// This type of error is thrown if an invalid
4+ /// field name is provided when reading a constant value.
5+ abstract class InvalidFieldName extends ErrorType {}
Original file line number Diff line number Diff line change 1+ import 'package:exception_templates/exception_templates.dart' ;
2+
3+ /// This type of error is thrown if an invalid type argument
4+ /// is provided for a generic type.
5+ abstract class InvalidTypeArgument extends ErrorType {}
You can’t perform that action at this time.
0 commit comments