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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/http_impl.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * HTTP status codes. 6 * HTTP status codes.
7 */ 7 */
8 interface HttpStatus { 8 interface HttpStatus {
9 static final int CONTINUE = 100; 9 static final int CONTINUE = 100;
10 static final int SWITCHING_PROTOCOLS = 101; 10 static final int SWITCHING_PROTOCOLS = 101;
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 } 656 }
657 657
658 658
659 class RedirectException extends HttpException { 659 class RedirectException extends HttpException {
660 const RedirectException(String message, 660 const RedirectException(String message,
661 List<RedirectInfo> this.redirects) : super(message); 661 List<RedirectInfo> this.redirects) : super(message);
662 final List<RedirectInfo> redirects; 662 final List<RedirectInfo> redirects;
663 } 663 }
664 664
665 665
666 class RedirectLimitExceeded extends RedirectException { 666 class RedirectLimitExceededException extends RedirectException {
667 const RedirectLimitExceeded(List<RedirectInfo> redirects) 667 const RedirectLimitExceededException(List<RedirectInfo> redirects)
668 : super("Redirect limit exceeded", redirects); 668 : super("Redirect limit exceeded", redirects);
669 } 669 }
670 670
671 671
672 class RedirectLoop extends RedirectException { 672 class RedirectLoopException extends RedirectException {
673 const RedirectLoop(List<RedirectInfo> redirects) 673 const RedirectLoopException(List<RedirectInfo> redirects)
674 : super("Redirect loop detected", redirects); 674 : super("Redirect loop detected", redirects);
675 } 675 }
OLDNEW
« 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