/*
 * Created on Jul 28, 2005
*/
package org.biomoby.registry.rdfagent.test;

/**
 * I always wanted my own exception ;-)
 * @author Eddie
*/
public class TestException extends Exception {

    /**
	 * 
	 */
	private static final long serialVersionUID = -6118119045261170044L;

	public TestException() {
        super();
    }
    
    public TestException(String message) {
        super(message);
    }
}
