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

14 lines
336 B
C++

#ifndef __PARSING_EXCEPTION_HPP
#define __PARSING_EXCEPTION_HPP
#include "common/EPPException.hpp"
class ParsingException : public EPPException
{
public:
ParsingException (const std::string &msg = "Parsing exception.")
: EPPException (msg) {};
EPP_EXCEPTION(ParsingException);
};
#endif // __PARSING_EXCEPTION_HPP