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