summaryrefslogtreecommitdiff
path: root/library/fileError.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:00:50 +0200
commit4ecfd41e36533d858c98d051ef70cab80e69e972 (patch)
treeca07d8745967d2c6a7123a5d32269cfbfaa7bd6c /library/fileError.h
parent2.2 (diff)
downloadFreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.gz
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.tar.bz2
FreeFileSync-4ecfd41e36533d858c98d051ef70cab80e69e972.zip
2.3
Diffstat (limited to 'library/fileError.h')
-rw-r--r--library/fileError.h25
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
bgstack15