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 15 {16 public NonSerializeTestException(String s)17 {18 super(s);19 }20 }21