/* (c) 1999-2000 Tino Schwarze, see COPYING for details */
/**
 * abstract base class for exception handling
 *
 * #include "cException_hh"
 *
 * This is only an abstract class for exception handling. It's mainly here
 * for matters of completeness as it does not contain any functionality.
 *
 * @see cMsgException
 */

#include "cException.hh"

cException::cException () {};

cException::~cException () {} ;

// rather short, huh? <g>
