001    package org.cocome.tradingsystem.systests;
002    
003    /**
004     * This class is used to signal problems with the test manager and its setup.
005     * 
006     * @author Benjamin Hummel
007     * @author $Author: hummel $
008     * @version $Rev: 61 $
009     * @levd.rating GREEN Rev: 61
010     */
011    @SuppressWarnings("serial")
012    public class TestManagerException extends Exception {
013    
014            /** Create a new exception. */
015            public TestManagerException(String message) {
016                    super(message);
017            }
018    
019            /** Create a new exception. */
020            public TestManagerException(String message, Throwable cause) {
021                    super(message, cause);
022            }
023    
024    }