DRDE/ACTK1_0/xml/ParsingException.hpp

15 lines
336 B
C++
Raw Permalink Normal View History

#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