aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/parseexception.cpp
blob: 03d547a76eed82b2b4845ebf9a5b580e8391ef78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#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;
}