16 lines
349 B
C++
16 lines
349 B
C++
|
#ifndef __ILLEGAL_STATE_EXCEPTION_HPP
|
||
|
#define __ILLEGAL_STATE_EXCEPTION_HPP
|
||
|
|
||
|
#include "common/EPPException.hpp"
|
||
|
|
||
|
class IllegalStateException : public EPPException
|
||
|
{
|
||
|
public:
|
||
|
IllegalStateException(const std::string &msg)
|
||
|
: EPPException (msg)
|
||
|
{ }
|
||
|
EPP_EXCEPTION(IllegalStateException);
|
||
|
};
|
||
|
|
||
|
#endif // __ILLEGAL_ARGUMENT_EXCEPTION_HPP
|