blob: 5cbeda742091438144a9448db9a3d4536e57000f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef XML_EXCEPTION_H
#define XML_EXCEPTION_H
#include <string>
#include "exception.h"
#include <stdarg.h>
subExceptionDecl( XmlException )
/*
class XmlException : public Exception
{
public:
XmlException( const char *sFormat, ... ) throw();
XmlException( int nCode, const char *sFormat, ... ) throw();
XmlException( int nCode=0 ) throw();
};*/
#endif
|