Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
ParserException.h
Go to the documentation of this file.
1
6#pragma once
7
9#include "Token.h"
10
11namespace sax {
12
17 Token m_expected;
18 Token m_read;
19public:
20 ParserException(const Token& expected, const Token& read);
21};
22
23} /* namespace sax */
24
25
Basic exception from which all other exceptions are derived.
Definition: CommonException.h:21
Definition: ParserException.h:16
ParserException(const Token &expected, const Token &read)
Definition: ParserException.cpp:10
Definition: Token.h:17
Definition: ComposerException.cpp:8