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

Unified Diff: utils/pub/io.dart

Issue 10944035: Use more semantic exit codes so we can detect HTTP errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index 19117f541d6f98d7e5d23417999e89e2d91ef8c1..fab92f5c54fa52ede08acdf8d1ed1248443ab3f4 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -384,7 +384,7 @@ Future<InputStream> httpGet(uri) {
if (response.statusCode >= 400) {
client.shutdown();
completer.completeException(
- new HttpException(response.statusCode, response.reasonPhrase));
+ new PubHttpException(response.statusCode, response.reasonPhrase));
return;
}
@@ -655,11 +655,11 @@ Future<bool> _extractTarGzWindows(InputStream stream, String destination) {
/**
* Exception thrown when an HTTP operation fails.
*/
-class HttpException implements Exception {
+class PubHttpException implements Exception {
final int statusCode;
final String reason;
- const HttpException(this.statusCode, this.reason);
+ const PubHttpException(this.statusCode, this.reason);
}
/**
« no previous file with comments | « utils/pub/hosted_source.dart ('k') | utils/pub/pub.dart » ('j') | utils/pub/pub.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698