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

Unified Diff: runtime/bin/http.dart

Issue 10389017: Add Exception to the class name for recently added exception classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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/bin/http_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/http.dart
diff --git a/runtime/bin/http.dart b/runtime/bin/http.dart
index 2c7ddc4c263e4e8e513e1be5fec1d010836be29d..e18962587584f790611513d17bc7036a4adf402c 100644
--- a/runtime/bin/http.dart
+++ b/runtime/bin/http.dart
@@ -663,13 +663,13 @@ class RedirectException extends HttpException {
}
-class RedirectLimitExceeded extends RedirectException {
- const RedirectLimitExceeded(List<RedirectInfo> redirects)
+class RedirectLimitExceededException extends RedirectException {
+ const RedirectLimitExceededException(List<RedirectInfo> redirects)
: super("Redirect limit exceeded", redirects);
}
-class RedirectLoop extends RedirectException {
- const RedirectLoop(List<RedirectInfo> redirects)
+class RedirectLoopException extends RedirectException {
+ const RedirectLoopException(List<RedirectInfo> redirects)
: super("Redirect loop detected", redirects);
}
« no previous file with comments | « no previous file | runtime/bin/http_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698