NRE_IOException.hpp
Go to the documentation of this file.
1 
10  #pragma once
11 
12  #include <Header/NRE_Utility.hpp>
13 
18  namespace NRE {
23  namespace Exception {
24 
29  class IOException : public IException {
30  public:
35  IOException(Utility::String const& log) throw() : IException(log) {
36  }
37  };
38  }
39  }
Utility&#39;s API.
An exception thrown by io operation.
Definition: NRE_IOException.hpp:29
The NearlyRealEngine&#39;s global namespace.
IOException(Utility::String const &log)
Definition: NRE_IOException.hpp:35