Chromium Code Reviews| Index: corelib/src/exceptions.dart |
| diff --git a/corelib/src/exceptions.dart b/corelib/src/exceptions.dart |
| index 2c72deea8e42a098010da46227bea17c09b0ad8f..b1546bbede3d70e134daba475ac332092ddb4f44 100644 |
| --- a/corelib/src/exceptions.dart |
| +++ b/corelib/src/exceptions.dart |
| @@ -194,3 +194,6 @@ class IntegerDivisionByZeroException implements Exception { |
| const IntegerDivisionByZeroException(); |
| String toString() => "IntegerDivisionByZeroException"; |
| } |
| + |
| +class AssertionError { |
|
Anders Johnsen
2012/08/27 12:18:44
Should we create a private constructor so it's not
Mads Ager (google)
2012/08/28 13:01:37
If we put it in here we should probably call it As
Mads Ager (google)
2012/08/28 13:01:37
I don't think there is any harm in this being inst
Anders Johnsen
2012/08/28 14:39:18
Sorry, didn't see that comment earlier on. I've cr
|
| +} |