From 3422905d8e5b373b7bf5fc9fbf7cf296ba51b627 Mon Sep 17 00:00:00 2001 From: Joonas Lehtinen Date: Tue, 2 Jan 2007 15:58:21 +0000 Subject: Added serials for fix #131 svn changeset:208/svn branch:toolkit --- src/com/itmill/toolkit/service/License.java | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/com/itmill/toolkit/service') diff --git a/src/com/itmill/toolkit/service/License.java b/src/com/itmill/toolkit/service/License.java index 09d92e5c08..96c9ed3ecf 100644 --- a/src/com/itmill/toolkit/service/License.java +++ b/src/com/itmill/toolkit/service/License.java @@ -627,45 +627,65 @@ public class License { } public class LicenseViolation extends Exception { + + private static final long serialVersionUID = -1907168254265902098L; + public LicenseViolation(String msg) { super(msg); } } public class LicenseFileHasAlreadyBeenRead extends Exception { + private static final long serialVersionUID = 6531225916088537239L; } public class LicenseFileHasNotBeenRead extends Exception { + private static final long serialVersionUID = -2298284163422128284L; } public class LicenseSignatureIsInvalid extends Exception { + private static final long serialVersionUID = -1931663861678614927L; } public class TooManyConcurrentUsers extends LicenseViolation { + private static final long serialVersionUID = -2388655757006023599L; + public TooManyConcurrentUsers(String msg) { super(msg); } } public class LicenseHasExpired extends LicenseViolation { + + private static final long serialVersionUID = -8631335939895587668L; + public LicenseHasExpired(String msg) { super(msg); } } public class ApplicationClassNameDoesNotMatch extends LicenseViolation { + + private static final long serialVersionUID = 5837570791695513847L; + public ApplicationClassNameDoesNotMatch(String msg) { super(msg); } } public class InvalidLicenseFile extends Exception { + + private static final long serialVersionUID = -1624980115082095017L; + InvalidLicenseFile(String message) { super(message); } } public class LicenseFileCanNotBeRead extends Exception { + + private static final long serialVersionUID = -362237440802937818L; + LicenseFileCanNotBeRead(String message) { super(message); } -- cgit v1.2.3