Преглед изворни кода

Added FileOperationException class

- added FileOperationException class to throw
exceptions related to file operations
Patrick пре 4 година
родитељ
комит
64ef7218f1
1 измењених фајлова са 25 додато и 0 уклоњено
  1. 25 0
      source/exception/FileOperationException.hpp

+ 25 - 0
source/exception/FileOperationException.hpp

@@ -0,0 +1,25 @@
+/*
+ * Author:          Patrick-Christopher Mattulat
+ * Company:         Lynar Studios
+ * E-Mail:          webmaster@lynarstudios.com
+ * Created:         2020-08-15
+ * Changed:         2020-08-15
+ *
+ * */
+
+#ifndef FILE_OPERATION_EXCEPTION_HPP
+#define FILE_OPERATION_EXCEPTION_HPP
+
+#include <exception>
+
+namespace ls_std {
+  class FileOperationException : public std::exception {
+    public:
+
+      const char *what() const noexcept override {
+        return "file operation failed...";
+      }
+  };
+}
+
+#endif