diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
commit | a1c91f4695e208d5a8f80dc37b1818169b7829ff (patch) | |
tree | 52f5134376d17c99b6c9e53133a2eb5cf171377c /zen/osx_error.h | |
parent | 5.16 (diff) | |
download | FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.gz FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.bz2 FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.zip |
5.17
Diffstat (limited to 'zen/osx_error.h')
-rw-r--r-- | zen/osx_error.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/zen/osx_error.h b/zen/osx_error.h deleted file mode 100644 index 4b0aeb3b..00000000 --- a/zen/osx_error.h +++ /dev/null @@ -1,27 +0,0 @@ -// ************************************************************************** -// * This file is part of the FreeFileSync project. It is distributed under * -// * GNU General Public License: http://www.gnu.org/licenses/gpl.html * -// * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved * -// ************************************************************************** - -#ifndef OSX_ERRROR_834270598342753425 -#define OSX_ERRROR_834270598342753425 - -#include <string> - -namespace osx -{ -class OsxError //Exception base class used to notify file/directory copy/delete errors -{ -public: - explicit OsxError(const std::wstring& message) : msg(message) {} - virtual ~OsxError() {} - - const std::wstring& toString() const { return msg; } - -private: - std::wstring msg; -}; -} - -#endif //OSX_ERRROR_834270598342753425 |