Restructured test directories.
[libsex.git] / tests / framework / UncloneableException.cxx
blobeb38c43b35e661dfda3b9a365a3783ac39c3dfe7
1 #include <tests/framework/UncloneableException.hxx>
3 UncloneableException::UncloneableException()
4 : libsex::Exception("UncloneableException") { }
6 UncloneableException::~UncloneableException() throw() { }
8 const libsex::Exception*
9 UncloneableException::clone() const throw(std::bad_alloc)
11 throw std::bad_alloc();