001/*
002 * $RCSfile: CommandFailed.java,v $
003 * $Revision: 1.1.2.2 $ $Date: 2010/03/06 00:05:51 $
004 *
005 * Copyright 2009 Kabira Technologies, Inc. All rights reserved.
006 */
007package com.kabira.test.management;
008
009/**
010 * This exception indicates that a problem occurred while executing a command.
011 */
012public class CommandFailed extends Exception
013{
014    private static final long serialVersionUID = 1;
015
016    /**
017     * Construct a CommandFailed exception.
018     * @param message Exception message
019     */
020    CommandFailed(String message)
021    {
022        super(message);
023    }
024
025    /**
026     * Construct a CommandFailed exception.
027     * @param message Exception message
028     * @param cause the throwable causing the exception.
029     */
030    CommandFailed(String message, Throwable cause)
031    {
032        super(message, cause);
033    }
034
035    CommandFailed(Throwable cause)
036    {
037        super(cause);
038    }
039}