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); |
} |
/** |