Prepared release of 3.1.0.
[libsex.git] / tests / framework / UncloneableException.hxx
blob375de12f523a00ec348ed49551c9b6f7a3a3ab2e
1 #ifndef UNCLONEABLEEXCEPTION_HXX
2 #define UNCLONEABLEEXCEPTION_HXX
4 #include <libsex/Exception.hxx>
6 class UncloneableException : public libsex::Exception
8 public:
9 UncloneableException();
10 ~UncloneableException() throw();
12 const libsex::Exception*
13 clone() const throw(std::bad_alloc);
16 #endif