DRDE/ACTK1_0/common/ParameterSyntaxException.hpp
Ren RenJuan 681188a22d push
2014-01-08 05:00:04 +00:00

14 lines
363 B
C++

#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