summaryrefslogtreecommitdiffstats
path: root/poxml/antlr/antlr/CharStreamException.h
blob: 4febc19c0be204b3b283525615b941ecea085b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef INC_CharStreamException_hpp__
#define INC_CharStreamException_hpp__

#include "antlr/config.h"
#include "antlr/ANTLRException.h"

ANTLR_BEGIN_NAMESPACE(antlr)

class CharStreamException : public ANTLRException {
public:
	CharStreamException(const ANTLR_USE_NAMESPACE(std)string& s)
		: ANTLRException(s) {}
	~CharStreamException() throw() {}
};

ANTLR_END_NAMESPACE

#endif //INC_CharStreamException_hpp__