summaryrefslogtreecommitdiff
path: root/sources/utils/VSTools.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-28 22:25:25 +0000
committerPaul Buetow <paul@buetow.org>2008-05-28 22:25:25 +0000
commitcd2024527c84e3e0fd22072a16ac1ff18e6d406d (patch)
treea920cee36078ce83a3eda711fb3c64037a175ae8 /sources/utils/VSTools.java
parent1a16f73ec3bb0eae98b4d540984f9015abe4c249 (diff)
exceptions should start with VS too.
Diffstat (limited to 'sources/utils/VSTools.java')
-rw-r--r--sources/utils/VSTools.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/utils/VSTools.java b/sources/utils/VSTools.java
index 80ba3ab..1a8338e 100644
--- a/sources/utils/VSTools.java
+++ b/sources/utils/VSTools.java
@@ -54,18 +54,18 @@ public final class VSTools {
* @return the parsed vector
*/
public static Vector<Integer> parseIntegerVector(String string)
- throws exceptions.ParseIntegerVectorException {
+ throws exceptions.VSParseIntegerVectorException {
Vector<Integer> vec = new Vector<Integer>();
int index = string.indexOf('[');
if (index == -1)
- throw new exceptions.ParseIntegerVectorException();
+ throw new exceptions.VSParseIntegerVectorException();
string = string.substring(index+1);
index = string.indexOf(']');
if (index == -1)
- throw new exceptions.ParseIntegerVectorException();
+ throw new exceptions.VSParseIntegerVectorException();
string = string.substring(0, index);