]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - jars/icu4j-52_1/main/classes/core/src/com/ibm/icu/util/IllformedLocaleException.java
Upgrade ICU4J.
[Dictionary.git] / jars / icu4j-52_1 / main / classes / core / src / com / ibm / icu / util / IllformedLocaleException.java
similarity index 78%
rename from jars/icu4j-4_8_1_1/main/classes/core/src/com/ibm/icu/util/IllformedLocaleException.java
rename to jars/icu4j-52_1/main/classes/core/src/com/ibm/icu/util/IllformedLocaleException.java
index 610996b56761dc6ade74a5fd0912aff788fda095..dbe6e3da7d89e76312a7976fe5022cc035da8f5f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *******************************************************************************
- * Copyright (C) 2009-2010, International Business Machines Corporation and    *
+ * Copyright (C) 2009-2012, International Business Machines Corporation and    *
  * others. All Rights Reserved.                                                *
  *******************************************************************************
  */
@@ -11,8 +11,7 @@ package com.ibm.icu.util;
  * indicate that an argument is not a well-formed BCP 47 tag.
  * 
  * @see ULocale
- * @draft ICU 4.2
- * @provisional This API might change or be removed in a future release.
+ * @stable ICU 4.2
  */
 public class IllformedLocaleException extends RuntimeException {
 
@@ -23,8 +22,7 @@ public class IllformedLocaleException extends RuntimeException {
     /**
      * Constructs a new <code>IllformedLocaleException</code> with no
      * detail message and -1 as the error index.
-     * @draft ICU 4.6
-     * @provisional This API might change or be removed in a future release.
+     * @stable ICU 4.6
      */
     public IllformedLocaleException() {
         super();
@@ -35,8 +33,7 @@ public class IllformedLocaleException extends RuntimeException {
      * given message and -1 as the error index.
      *
      * @param message the message
-     * @draft ICU 4.2
-     * @provisional This API might change or be removed in a future release.
+     * @stable ICU 4.2
      */
     public IllformedLocaleException(String message) {
         super(message);
@@ -51,8 +48,7 @@ public class IllformedLocaleException extends RuntimeException {
      *
      * @param message the message
      * @param errorIndex the index
-     * @draft ICU 4.2
-     * @provisional This API might change or be removed in a future release.
+     * @stable ICU 4.2
      */
     public IllformedLocaleException(String message, int errorIndex) {
         super(message + ((errorIndex < 0) ? "" : " [at index " + errorIndex + "]"));
@@ -64,8 +60,7 @@ public class IllformedLocaleException extends RuntimeException {
      * either the error index is not applicable or unknown.
      *
      * @return the error index
-     * @draft ICU 4.2
-     * @provisional This API might change or be removed in a future release.
+     * @stable ICU 4.2
      */
     public int getErrorIndex() {
         return _errIdx;