From 5bf750ce5d254cc85790adefccbff78277019353 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 13 Aug 2008 16:01:14 +0000 Subject: some cleanup --- sources/exceptions/VSEventNotCopyableException.java | 3 +++ sources/exceptions/VSNegativeNumberException.java | 2 ++ sources/exceptions/VSParseIntegerVectorException.java | 2 ++ 3 files changed, 7 insertions(+) (limited to 'sources/exceptions') diff --git a/sources/exceptions/VSEventNotCopyableException.java b/sources/exceptions/VSEventNotCopyableException.java index 9437090..44d1960 100644 --- a/sources/exceptions/VSEventNotCopyableException.java +++ b/sources/exceptions/VSEventNotCopyableException.java @@ -30,6 +30,9 @@ package exceptions; * @author Paul C. Buetow */ public class VSEventNotCopyableException extends Exception { + /** The serial version uid */ + private static final long serialVersionUID = 1L; + public VSEventNotCopyableException(String descr) { super(descr); } diff --git a/sources/exceptions/VSNegativeNumberException.java b/sources/exceptions/VSNegativeNumberException.java index ea6073c..a30a385 100644 --- a/sources/exceptions/VSNegativeNumberException.java +++ b/sources/exceptions/VSNegativeNumberException.java @@ -30,4 +30,6 @@ package exceptions; * @author Paul C. Buetow */ public class VSNegativeNumberException extends Exception { + /** The serial version uid */ + private static final long serialVersionUID = 1L; } diff --git a/sources/exceptions/VSParseIntegerVectorException.java b/sources/exceptions/VSParseIntegerVectorException.java index 3aabe87..d8fe4cf 100644 --- a/sources/exceptions/VSParseIntegerVectorException.java +++ b/sources/exceptions/VSParseIntegerVectorException.java @@ -31,4 +31,6 @@ package exceptions; * @author Paul C. Buetow */ public class VSParseIntegerVectorException extends Exception { + /** The serial version uid */ + private static final long serialVersionUID = 1L; } -- cgit v1.2.3