FileOperationException.cpp 856 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-04
  6. * Changed: 2023-05-19
  7. *
  8. * */
  9. #include <ls-std/core/exception/ExceptionMessage.hpp>
  10. #include <ls-std/core/exception/FileOperationException.hpp>
  11. using ls::std::core::Exception;
  12. using ls::std::core::FileOperationException;
  13. using std::move;
  14. using std::string;
  15. FileOperationException::FileOperationException() : Exception("FileOperationException")
  16. {}
  17. FileOperationException::FileOperationException(const string &_message) : FileOperationException()
  18. {
  19. this->_setMessage(_message);
  20. }
  21. FileOperationException::~FileOperationException() noexcept = default;
  22. const char *FileOperationException::what() const noexcept
  23. {
  24. return this->_getIdentifiedMessage("file operation failed!");
  25. }