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

Unified Diff: lib/core/exceptions.dart

Issue 11233063: Move ObjectNotClosureException and ClosureArgumentMismatchException to patch file. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: checked mode test expectations. 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
« no previous file with comments | « no previous file | runtime/lib/errors_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/core/exceptions.dart
diff --git a/lib/core/exceptions.dart b/lib/core/exceptions.dart
index 886680ecac1dad3d05d6adc4cd7f14ce658a7518..12274b8c87f453042c7d480f844ee496a394ab20 100644
--- a/lib/core/exceptions.dart
+++ b/lib/core/exceptions.dart
@@ -42,19 +42,6 @@ class IllegalAccessException implements Exception {
String toString() => "Attempt to modify an immutable object";
}
-
-class ClosureArgumentMismatchException implements Exception {
- const ClosureArgumentMismatchException();
- String toString() => "Closure argument mismatch";
-}
-
-
-class ObjectNotClosureException implements Exception {
- const ObjectNotClosureException();
- String toString() => "Object is not closure";
-}
-
-
/**
* Exception thrown when a string or some other data does not have an expected
* format and cannot be parsed or processed.
« no previous file with comments | « no previous file | runtime/lib/errors_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698