From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- cutl/fs/exception.hxx | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 cutl/fs/exception.hxx (limited to 'cutl/fs/exception.hxx') diff --git a/cutl/fs/exception.hxx b/cutl/fs/exception.hxx deleted file mode 100644 index ebb04bf..0000000 --- a/cutl/fs/exception.hxx +++ /dev/null @@ -1,36 +0,0 @@ -// file : cutl/fs/exception.hxx -// license : MIT; see accompanying LICENSE file - -#ifndef CUTL_FS_EXCEPTION_HXX -#define CUTL_FS_EXCEPTION_HXX - -#include - -#include - -namespace cutl -{ - namespace fs - { - struct LIBCUTL_EXPORT error: exception - { - error (int code): code_ (code) {} - - // Error code (errno). - // - int - code () const - { - return code_; - } - - virtual char const* - what () const LIBCUTL_NOTHROW_NOEXCEPT; - - private: - int code_; - }; - } -} - -#endif // CUTL_FS_EXCEPTION_HXX -- cgit v1.1