You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/poxml/antlr/antlr/CharStreamException.h

19 lines
414 B

#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__