Merge branch 'Release_2_8_2_Branch' into JAL-429_phylip-file-support
[jalview.git] / src / jalview / schemabinding / version2 / Feature.java
index 3bc1a9e..bbc5f67 100644 (file)
@@ -24,6 +24,8 @@ package jalview.schemabinding.version2;
 //- Imported classes and packages -/
 //---------------------------------/
 
+import jalview.util.MessageManager;
+
 import org.exolab.castor.xml.Marshaller;
 import org.exolab.castor.xml.Unmarshaller;
 
@@ -224,9 +226,11 @@ public class Feature implements java.io.Serializable
     // check bounds for index
     if (index < 0 || index >= this._otherDataList.size())
     {
-      throw new IndexOutOfBoundsException("getOtherData: Index value '"
-              + index + "' not in range [0.."
-              + (this._otherDataList.size() - 1) + "]");
+        throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{
+                         "getOtherData",
+                         Integer.valueOf(index).toString(),
+                         Integer.valueOf((this._otherDataList.size() - 1)).toString()
+          })); 
     }
 
     return (jalview.schemabinding.version2.OtherData) _otherDataList
@@ -467,9 +471,11 @@ public class Feature implements java.io.Serializable
     // check bounds for index
     if (index < 0 || index >= this._otherDataList.size())
     {
-      throw new IndexOutOfBoundsException("setOtherData: Index value '"
-              + index + "' not in range [0.."
-              + (this._otherDataList.size() - 1) + "]");
+        throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{
+                 "setOtherData",
+                 Integer.valueOf(index).toString(),
+                 Integer.valueOf((this._otherDataList.size() - 1)).toString()
+        })); 
     }
 
     this._otherDataList.set(index, vOtherData);