Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(469)

Unified Diff: lib/core/exceptions.dart

Issue 11275042: Renaming IndexOutOfRangeException to RangeError. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/core/exceptions.dart
diff --git a/lib/core/exceptions.dart b/lib/core/exceptions.dart
index c09edb592ac01bf3956a48cd0b69342a28487e53..87cfb27e540e553543052e7536cb4bef337ebbda 100644
--- a/lib/core/exceptions.dart
+++ b/lib/core/exceptions.dart
@@ -24,18 +24,6 @@ class _ExceptionImplementation implements Exception {
/**
- * Exception thrown because of an index outside of the valid range.
- */
-class IndexOutOfRangeException implements Exception {
- const IndexOutOfRangeException(this._value);
-
- String toString() => "IndexOutOfRangeException: $_value";
-
- final _value;
-}
-
-
-/**
* Exception thrown when a string or some other data does not have an expected
* format and cannot be parsed or processed.
*/

Powered by Google App Engine
This is Rietveld 408576698