From cd2024527c84e3e0fd22072a16ac1ff18e6d406d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 28 May 2008 22:25:25 +0000 Subject: exceptions should start with VS too. --- sources/utils/VSTools.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sources/utils/VSTools.java') 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 parseIntegerVector(String string) - throws exceptions.ParseIntegerVectorException { + throws exceptions.VSParseIntegerVectorException { Vector vec = new Vector(); 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); -- cgit v1.2.3