My Project
FileError.hpp
1 /*
2 ** EPITECH PROJECT, 2022
3 ** B-YEP-400-PAR-4-1-indiestudio-martin.vanaud
4 ** File description:
5 ** FileError
6 */
7 
8 #ifndef FILEERROR_HPP_
9  #define FILEERROR_HPP_
10 
11  #include "Errors.hpp"
12 
16 namespace Error {
20  class FileError : public Errors {
21  public:
27  FileError(std::string const &message) throw();
28 
32  virtual ~FileError() throw();
33 
34  protected:
35  private:
36  };
37 }
38 
39 #endif /* !FILEERROR_HPP_ */
Error
Error namespace that will contain all Error types.
Definition: Errors.hpp:18
Error::Errors
Erorr class to handle throw.
Definition: Errors.hpp:22
Error::FileError::FileError
FileError(std::string const &message)
Construct a new File Error object.
Definition: FileError.cpp:10
Error::FileError::~FileError
virtual ~FileError()
Destroy the File Error object.
Definition: FileError.cpp:15
Error::FileError
FileError class to handle throw, inherited from Errors.
Definition: FileError.hpp:20