NRE_FileNotOpeningException.hpp
Go to the documentation of this file.
1 
10  #pragma once
11 
12  #include "NRE_IOException.hpp"
13 
18  namespace NRE {
23  namespace Exception {
24 
30  public:
35  FileNotOpeningException(Utility::String const& log) throw() : IOException("FileNotOpening Exception : " + log) {
36  }
37  };
38  }
39  }
FileNotOpeningException(Utility::String const &log)
Definition: NRE_FileNotOpeningException.hpp:35
Utility's API.
Declaration of System's API's Object : IOException.
An exception thrown by io operation.
Definition: NRE_IOException.hpp:29
The NearlyRealEngine's global namespace.
An exception thrown when attempting to open a file.
Definition: NRE_FileNotOpeningException.hpp:29
IOException(Utility::String const &log)
Definition: NRE_IOException.hpp:35