Added Exception and its tests.
[libsex.git] / tests / UncloneableException.cxx
blob9eb094b257136a898457669afde644d200352af5
1 #include <tests/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();