diff options
Diffstat (limited to 'shared/fileError.h')
-rw-r--r-- | shared/fileError.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/shared/fileError.h b/shared/fileError.h index f5c6bdbd..daf97910 100644 --- a/shared/fileError.h +++ b/shared/fileError.h @@ -6,20 +6,20 @@ namespace FreeFileSync { - class FileError //Exception class used to notify file/directory copy/delete errors - { - public: - FileError(const wxString& message) : - errorMessage(message) {} +class FileError //Exception class used to notify file/directory copy/delete errors +{ +public: + FileError(const wxString& message) : + errorMessage(message) {} - const wxString& show() const - { - return errorMessage; - } + const wxString& show() const + { + return errorMessage; + } - private: - wxString errorMessage; - }; +private: + wxString errorMessage; +}; } #endif // FILEERROR_H_INCLUDED |