DRDE/ACTK1_0/common/ParameterSyntaxException.hpp

15 lines
363 B
C++
Raw Normal View History

#ifndef __PARAMETER_SYNTAX_EXCEPTION_HPP
#define __PARAMETER_SYNTAX_EXCEPTION_HPP
#include "common/EPPException.hpp"
class ParameterSyntaxException : public EPPException
{
public:
ParameterSyntaxException (const std::string &msg)
: EPPException (msg) {};
EPP_EXCEPTION(ParameterSyntaxException);
};
#endif // __PARAMETER_SYNTAX_EXCEPTION_HPP