
package org.mortbay.webapps.jetty;

public class TestException extends Exception
{
    public TestException()
    {
        super();
    }
    
    public TestException(String m)
    {
        super(m);
    }
}
