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/TokenStreamException.h

20 lines
455 B

#ifndef INC_TokenStreamException_hpp__
#define INC_TokenStreamException_hpp__
#include "antlr/config.h"
#include "antlr/ANTLRException.h"
ANTLR_BEGIN_NAMESPACE(antlr)
class TokenStreamException : public ANTLRException {
public:
TokenStreamException() {}
TokenStreamException(const ANTLR_USE_NAMESPACE(std)string& s)
: ANTLRException(s) {}
virtual ~TokenStreamException() throw() {}
};
ANTLR_END_NAMESPACE
#endif //INC_TokenStreamException_hpp__