X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fio%2Ffile.h;h=106813144615f6767d1e1247432903505154ec48;hb=1787d4928ac1285f5434a2c8d0676deea9ce9176;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; };