platform/lib/src/http/fatal_error.dart

9 lines
174 B
Dart
Raw Normal View History

2016-12-10 14:12:07 +00:00
/// Thrown whenever Angel completely fails to respond to a request.
class AngelFatalError {
var error;
StackTrace stack;
AngelFatalError({this.error, this.stack});
}