| Index: sdk/lib/core/exceptions.dart
|
| diff --git a/sdk/lib/core/exceptions.dart b/sdk/lib/core/exceptions.dart
|
| index afe3285c75fff68c8a9337a7af73174890464eb9..1a7c4361d907269313ff97ae5924a673f9c7a79a 100644
|
| --- a/sdk/lib/core/exceptions.dart
|
| +++ b/sdk/lib/core/exceptions.dart
|
| @@ -64,12 +64,3 @@ class IntegerDivisionByZeroException implements Exception {
|
| const IntegerDivisionByZeroException();
|
| String toString() => "IntegerDivisionByZeroException";
|
| }
|
| -
|
| -/**
|
| - * Exception thrown when a runtime error occurs.
|
| - */
|
| -class RuntimeError implements Exception {
|
| - final message;
|
| - RuntimeError(this.message);
|
| - String toString() => "RuntimeError: $message";
|
| -}
|
|
|