summaryrefslogtreecommitdiffstats
path: root/luni/src/main/java/java/text/DateFormatSymbols.java
diff options
context:
space:
mode:
Diffstat (limited to 'luni/src/main/java/java/text/DateFormatSymbols.java')
-rw-r--r--luni/src/main/java/java/text/DateFormatSymbols.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/luni/src/main/java/java/text/DateFormatSymbols.java b/luni/src/main/java/java/text/DateFormatSymbols.java
index 3c4768d..e2a2345 100644
--- a/luni/src/main/java/java/text/DateFormatSymbols.java
+++ b/luni/src/main/java/java/text/DateFormatSymbols.java
@@ -142,7 +142,7 @@ public class DateFormatSymbols implements Serializable, Cloneable {
*/
public static final DateFormatSymbols getInstance(Locale locale) {
if (locale == null) {
- throw new NullPointerException();
+ throw new NullPointerException("locale == null");
}
return new DateFormatSymbols(locale);
}
@@ -410,7 +410,7 @@ public class DateFormatSymbols implements Serializable, Cloneable {
*/
public void setLocalPatternChars(String data) {
if (data == null) {
- throw new NullPointerException();
+ throw new NullPointerException("data == null");
}
localPatternChars = data;
}
@@ -471,7 +471,7 @@ public class DateFormatSymbols implements Serializable, Cloneable {
*/
public void setZoneStrings(String[][] zoneStrings) {
if (zoneStrings == null) {
- throw new NullPointerException();
+ throw new NullPointerException("zoneStrings == null");
}
for (String[] row : zoneStrings) {
if (row.length < 5) {