X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fio%2Ffile.h;h=90a1041ccda6520db5386b724f43fe6e936bfe85;hb=3f7aa81d9212811b323d89949adcccda212cbed3;hp=5fb0353211b2e99d23384afa2924e87ee78acc10;hpb=8642ac1b4478419630911a51a53fe8ef5fb46647;p=libs%2Fcore.git diff --git a/source/io/file.h b/source/io/file.h index 5fb0353..90a1041 100644 --- a/source/io/file.h +++ b/source/io/file.h @@ -15,12 +15,14 @@ class file_not_found: public std::runtime_error { public: file_not_found(const std::string &fn): std::runtime_error(fn) { } + ~file_not_found() throw() { } }; class file_already_exists: public std::runtime_error { public: file_already_exists(const std::string &fn): std::runtime_error(fn) { } + ~file_already_exists() throw() { } };