aboutsummaryrefslogtreecommitdiff
path: root/src/exception.cpp
blob: 3cde134fbe9ffd0d7ec5b561d13c32580307413e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include "exception.h"
#include <stdarg.h>

Exception::Exception( const char *lpFormat, ... ) throw() :
	nErrorCode( 0 ),
	sWhat( NULL )
{
	va_list ap;

	va_start(ap, lpFormat);
	setWhat( lpFormat, ap );
	va_end(ap);
}

Exception::Exception( int nCode, const char *lpFormat, ... ) throw() :
	nErrorCode( nCode ),
	sWhat( NULL )
{
	va_list ap;

	va_start(ap, lpFormat);
	setWhat( lpFormat, ap );
	va_end(ap);
}

Exception::Exception( int nCode ) throw() :
	nErrorCode( nCode ),
	sWhat( NULL )
{
}

Exception::~Exception() throw()
{
	if( sWhat )
	{
		delete[] sWhat;
		sWhat = NULL;
	}
}

void Exception::setWhat( const char *lpFormat, va_list &vargs )
{
	if( sWhat ) delete[] sWhat;
	int nSize;

	nSize = vsnprintf( NULL, 0, lpFormat, vargs );
	sWhat = new char[nSize+1];
	vsnprintf( sWhat, nSize+1, lpFormat, vargs );
}

const char *Exception::what() const throw()
{
	return sWhat;
}

int Exception::getErrorCode()
{
	return nErrorCode;
}