X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fio%2Ffile.h;h=106813144615f6767d1e1247432903505154ec48;hb=3bfc22d12b893d94cbb4697a77b7cababcbbd921;hp=f23cc93e7d013b71dc33cbe060cd83ce939fbe4a;hpb=7c6c92800088e8b5d8b33ef17017b595ee7efef5;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; };