blob: b28d292669782eb732c375231fceda11773393d8 (
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
|
#ifndef EXCEPTIONS_H
#define EXCEPTIONS_H
#include "exceptionbase.h"
#include <stdarg.h>
namespace Bu
{
subExceptionDecl( XmlException )
subExceptionDecl( FileException )
subExceptionDecl( ConnectionException )
subExceptionDecl( PluginException )
enum eFileException
{
excodeEOF
};
enum eConnectionException
{
excodeReadError,
excodeBadReadError,
excodeConnectionClosed,
excodeSocketTimeout
};
}
#endif
|