#include "gats-qt/typeexception.h" Gats::TypeException::TypeException( const char * const sMessage ) : sMessage( sMessage ) { } Gats::TypeException::TypeException( const TypeException &rSrc ) : sMessage( rSrc.sMessage ) { } Gats::TypeException::~TypeException() { } QException *Gats::TypeException::clone() const { return new TypeException( *this ); } void Gats::TypeException::raise() const { throw *this; } const char *Gats::TypeException::what() const noexcept { return sMessage; }