this class now implements java.io.Serializable

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137094 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sean Sullivan 2002-10-09 05:29:52 +00:00
parent fe4b0dd5ce
commit 6200e1369f
1 changed files with 4 additions and 2 deletions

View File

@ -63,14 +63,16 @@ import java.io.StringWriter;
* @author <a href="mailto:dlr@collab.net">Daniel Rall</a> * @author <a href="mailto:dlr@collab.net">Daniel Rall</a>
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a> * @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a>
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a> * @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @version $Id: NestableDelegate.java,v 1.9 2002/09/29 08:20:52 bayard Exp $ * @author Sean C. Sullivan
* @version $Id: NestableDelegate.java,v 1.10 2002/10/09 05:29:52 sullis Exp $
*/ */
public class NestableDelegate public class NestableDelegate
implements java.io.Serializable
{ {
/** /**
* Constructor error message. * Constructor error message.
*/ */
private static final String MUST_BE_THROWABLE = private transient static final String MUST_BE_THROWABLE =
"The Nestable implementation passed to the NestableDelegate(Nestable) " "The Nestable implementation passed to the NestableDelegate(Nestable) "
+ "constructor must extend java.lang.Throwable"; + "constructor must extend java.lang.Throwable";