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

Unified Diff: utils/pub/hosted_source.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/hosted_source.dart
diff --git a/utils/pub/hosted_source.dart b/utils/pub/hosted_source.dart
index 1a1534752ce0ce71a0e63e3fe7c10cc3b935e513..1d9a8477ce0b8baf93d4f33467d9f02345cba897 100644
--- a/utils/pub/hosted_source.dart
+++ b/utils/pub/hosted_source.dart
@@ -39,7 +39,7 @@ class HostedSource extends Source {
var doc = JSON.parse(body);
return doc['versions'].map((version) => new Version.parse(version));
}).transformException((ex) {
- if (ex is HttpException && ex.statusCode == 404) {
+ if (ex is PubHttpException && ex.statusCode == 404) {
throw 'Could not find package "${parsed.first}" on ${parsed.last}.';
}
« no previous file with comments | « utils/pub/exit_codes.dart ('k') | utils/pub/io.dart » ('j') | utils/pub/pub.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698