NRE_FileNotExistingException.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  FileNotExistingException(Utility::String const& log) throw() : IOException("FileNotExisting Exception : " + log) {
36  }
37  };
38  }
39  }
FileNotExistingException(Utility::String const &log)
Definition: NRE_FileNotExistingException.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 an operation on a unexisting file.
Definition: NRE_FileNotExistingException.hpp:29
IOException(Utility::String const &log)
Definition: NRE_IOException.hpp:35