JAL-1355
[jalview.git] / src / jalview / schemabinding / version2 / Pdbids.java
index b491cf0..bf700f9 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;
 
@@ -115,10 +117,11 @@ public class Pdbids extends jalview.schemabinding.version2.Pdbentry
     // check bounds for index
     if (index < 0 || index >= this._structureStateList.size())
     {
-      throw new IndexOutOfBoundsException(
-              "getStructureState: Index value '" + index
-                      + "' not in range [0.."
-                      + (this._structureStateList.size() - 1) + "]");
+        throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{
+                         "getStructureState",
+                         Integer.valueOf(index).toString(),
+                         Integer.valueOf((this._structureStateList.size() - 1)).toString()
+          })); 
     }
 
     return (jalview.schemabinding.version2.StructureState) _structureStateList
@@ -255,10 +258,11 @@ public class Pdbids extends jalview.schemabinding.version2.Pdbentry
     // check bounds for index
     if (index < 0 || index >= this._structureStateList.size())
     {
-      throw new IndexOutOfBoundsException(
-              "setStructureState: Index value '" + index
-                      + "' not in range [0.."
-                      + (this._structureStateList.size() - 1) + "]");
+        throw new IndexOutOfBoundsException(MessageManager.formatMessage("exception.index_value_not_in_range", new String[]{
+                 "setStructureState",
+                 Integer.valueOf(index).toString(),
+                 Integer.valueOf((this._structureStateList.size() - 1)).toString()
+        })); 
     }
 
     this._structureStateList.set(index, vStructureState);