/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-04 * Changed: 2023-03-28 * * */ #include #include using ls::std::core::Exception; using ls::std::core::FileOperationException; using std::move; using std::string; FileOperationException::FileOperationException() : Exception("FileOperationException") {} FileOperationException::FileOperationException(string _message) : FileOperationException() { this->message = ::move(_message); } FileOperationException::~FileOperationException() noexcept = default; const char *FileOperationException::what() const noexcept { return this->_getIdentifiedMessage("file operation failed!"); }