KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > remoting > exception > server > NonSerializeTestException


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.test.remoting.exception.server;
10
11 /**
12  * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>
13  */

14 public class NonSerializeTestException extends Throwable JavaDoc
15 {
16    public NonSerializeTestException(String JavaDoc s)
17    {
18       super(s);
19    }
20 }
21
Popular Tags