00001 #include "OSDLTestException.h" 00002 00003 00004 using std::string ; 00005 00006 using namespace OSDL ; 00007 00008 00009 00010 TestException::TestException( const string & reason ) throw() : 00011 Exception( reason ) 00012 { 00013 00014 } 00015 00016 00017 TestException::~TestException() throw () 00018 { 00019 00020 } 00021 00022 00023 00024 std::ostream & operator << ( std::ostream & os, const OSDL::TestException & e ) 00025 { 00026 return os << e.toString() ; 00027 } 00028