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

Unified Diff: pkg/intl/lib/src/date_format_field.dart

Issue 11358060: Change NotImplementedException to UnimplementedError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 1 month 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
« no previous file with comments | « lib/io/path_impl.dart ('k') | pkg/unittest/lib/src/core_matchers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/lib/src/date_format_field.dart
diff --git a/pkg/intl/lib/src/date_format_field.dart b/pkg/intl/lib/src/date_format_field.dart
index 3e7c6cf67131d0db9d252b3f4a37b7191bb7f34d..7e210a3b3c13e1e5472f0ec695e6218120f1d128 100644
--- a/pkg/intl/lib/src/date_format_field.dart
+++ b/pkg/intl/lib/src/date_format_field.dart
@@ -378,15 +378,15 @@ class _DateFormatPatternField extends _DateFormatField {
String formatTimeZoneId(Date date) {
// TODO(alanknight): implement time zone support
- throw new NotImplementedException();
+ throw new UnimplementedError();
}
String formatTimeZone(Date date) {
- throw new NotImplementedException();
+ throw new UnimplementedError();
}
String formatTimeZoneRFC(Date date) {
- throw new NotImplementedException();
+ throw new UnimplementedError();
}
/**
« no previous file with comments | « lib/io/path_impl.dart ('k') | pkg/unittest/lib/src/core_matchers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698