Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
GrammarException.h
Go to the documentation of this file.
1
6#pragma once
7
9
10namespace grammar {
11
16public:
17 explicit GrammarException(const std::string& cause);
18};
19
20} /* namespace grammar */
21
Basic exception from which all other exceptions are derived.
Definition: CommonException.h:21
Definition: GrammarException.h:15
GrammarException(const std::string &cause)
Definition: GrammarException.cpp:10
Definition: ToAutomaton.h:24