added serializable id
This commit is contained in:
Scott Battaglia 2007-11-14 21:12:38 +00:00
parent 5a9b250559
commit 3ed64f6660
2 changed files with 11 additions and 1 deletions

View File

@ -10,6 +10,11 @@ package org.jasig.cas.client.validation;
public final class InvalidProxyChainTicketValidationException extends TicketValidationException {
/**
* Unique Id for Serialization
*/
private static final long serialVersionUID = -7736653266370691534L;
/**
* Constructs an exception with the supplied message.
* @param string the supplied message.
*/

View File

@ -10,7 +10,12 @@ package org.jasig.cas.client.validation;
public class TicketValidationException extends Exception {
/**
* Constructs an exception with the supplied messsage.
* Unique Id for Serialization
*/
private static final long serialVersionUID = -7036248720402711806L;
/**
* Constructs an exception with the supplied message.
*
* @param string the message
*/