platform/packages/container/angel_container/lib/src/exception.dart

9 lines
158 B
Dart
Raw Normal View History

2018-07-10 18:18:10 +00:00
class ReflectionException implements Exception {
final String message;
ReflectionException(this.message);
@override
String toString() => message;
}