X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fio%2Ffile.h;h=106813144615f6767d1e1247432903505154ec48;hb=db3397e3b7b9839714ce28d9df2a8f226f2e58b2;hp=f23cc93e7d013b71dc33cbe060cd83ce939fbe4a;hpb=991fabc1956b73a4007859058fb44171000b452e;p=libs%2Fcore.git diff --git a/source/io/file.h b/source/io/file.h index f23cc93..1068131 100644 --- a/source/io/file.h +++ b/source/io/file.h @@ -14,14 +14,12 @@ class file_not_found: public std::runtime_error { public: file_not_found(const std::string &fn): std::runtime_error(fn) { } - ~file_not_found() throw() override = default; }; class file_already_exists: public std::runtime_error { public: file_already_exists(const std::string &fn): std::runtime_error(fn) { } - ~file_already_exists() throw() override = default; };