Skip to content
Snippets Groups Projects
Commit cc6eefd1 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

remove not needed symbol exception

parent 56184702
No related branches found
No related tags found
No related merge requests found
/*
* SymbolException.cpp
*
* Created on: Apr 13, 2016
* Author: Jan Trvnicek
*/
#include "SymbolException.h"
namespace alphabet {
SymbolException::SymbolException(const std::string& cause) :
CommonException(cause) {
}
} /* namespace alphabet */
/*
* SymbolException.h
*
* Created on: Apr 13, 2016
* Author: Jan Trvnicek
*/
#ifndef SYMBOL_EXCEPTION_H_
#define SYMBOL_EXCEPTION_H_
#include <exception/CommonException.h>
namespace alphabet {
/**
* Exception thrown by an tree, tree parser or tree printer.
*/
class SymbolException: public exception::CommonException {
public:
explicit SymbolException(const std::string& cause);
};
} /* namespace alphabet */
#endif /* SYMBOL_EXCEPTION_H_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment