1 #ifndef INC_NoViableAltException_hpp__
2 #define INC_NoViableAltException_hpp__
4 /* ANTLR Translator Generator
5 * Project led by Terence Parr at http://www.jGuru.com
6 * Software rights: http://www.antlr.org/license.html
8 * $Id: //depot/code/org.antlr/release/antlr-2.7.7/lib/cpp/antlr/NoViableAltException.hpp#2 $
11 #include <antlr/config.hpp>
12 #include <antlr/RecognitionException.hpp>
13 #include <antlr/Token.hpp>
14 #include <antlr/AST.hpp>
16 #ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
20 class ANTLR_API NoViableAltException : public RecognitionException {
23 const RefAST node; // handles parsing and treeparsing
25 NoViableAltException(RefAST t);
26 NoViableAltException(RefToken t,const ANTLR_USE_NAMESPACE(std)string& fileName_);
28 ~NoViableAltException() throw() {}
31 * Returns a clean error message (no line number/column information)
33 ANTLR_USE_NAMESPACE(std)string getMessage() const;
36 #ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
40 #endif //INC_NoViableAltException_hpp__