001 package toolbus.exceptions;
002
003 /**
004 * @author paulk, Jul 29, 2002 ToolBusException: thrown when a user-related error-condition occurs.
005 */
006 public class ToolBusException extends Exception{
007 private static final long serialVersionUID = 385761684682558825L;
008
009 /**
010 * Constructor for ToolBusRunTimeException.
011 *
012 * @param arg0
013 */
014 public ToolBusException(String message){
015 super(message);
016 }
017
018 public ToolBusException(String message, Throwable t){
019 super(message, t);
020 }
021 }