| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |