diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:00:50 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:00:50 +0200 |
commit | 4ecfd41e36533d858c98d051ef70cab80e69e972 (patch) | |
tree | ca07d8745967d2c6a7123a5d32269cfbfaa7bd6c /library/fileError.h | |
parent | 2.2 (diff) | |
download | FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.gz FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.bz2 FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.zip |
2.3
Diffstat (limited to 'library/fileError.h')
-rw-r--r-- | library/fileError.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/library/fileError.h b/library/fileError.h deleted file mode 100644 index 214cdecb..00000000 --- a/library/fileError.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef FILEERROR_H_INCLUDED -#define FILEERROR_H_INCLUDED - -#include "zstring.h" -#include "fileError.h" - -namespace FreeFileSync -{ - class FileError //Exception class used to notify file/directory copy/delete errors - { - public: - FileError(const Zstring& message) : - errorMessage(message) {} - - const Zstring& show() const - { - return errorMessage; - } - - private: - Zstring errorMessage; - }; -} - -#endif // FILEERROR_H_INCLUDED |