Switched from autotools to CMake.
[libsex.git] / tests / framework / UncloneableException.hxx
blobe90bdac44d33cc3b6744f976f754e86aa8233295
1 #ifndef UNCLONEABLEEXCEPTION_HXX
2 #define UNCLONEABLEEXCEPTION_HXX
4 #include <source/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