00001 #include "OSDLEngineCommon.h" 00002 00003 using std::string ; 00004 00005 using namespace OSDL::Engine ; 00006 00007 00008 EngineException::EngineException( const string & reason ) throw() : 00009 OSDL::Exception( reason ) 00010 { 00011 00012 } 00013 00014 00015 EngineException::~EngineException() throw() 00016 { 00017 00018 } 00019 00020 00021 SchedulingException::SchedulingException( const string & reason ) throw() : 00022 EngineException( "SchedulingException : " + reason ) 00023 { 00024 00025 } 00026 00027 00028 SchedulingException::~SchedulingException() throw() 00029 { 00030 00031 } 00032