diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-28 22:25:25 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-28 22:25:25 +0000 |
| commit | cd2024527c84e3e0fd22072a16ac1ff18e6d406d (patch) | |
| tree | a920cee36078ce83a3eda711fb3c64037a175ae8 /sources/utils/VSTools.java | |
| parent | 1a16f73ec3bb0eae98b4d540984f9015abe4c249 (diff) | |
exceptions should start with VS too.
Diffstat (limited to 'sources/utils/VSTools.java')
| -rw-r--r-- | sources/utils/VSTools.java | 6 |
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); |
