DASH  0.3.0
RuntimeError.h
1 #ifndef DASH__EXCEPTION__RUNTIME_ERROR_H_
2 #define DASH__EXCEPTION__RUNTIME_ERROR_H_
3 
4 #include <stdexcept>
5 #include <string>
6 
7 namespace dash {
8 namespace exception {
9 
10 class RuntimeError : public ::std::runtime_error {
11 public:
12  RuntimeError(const ::std::string & message)
13  : ::std::runtime_error(message) {
14  }
15 };
16 
17 } // namespace exception
18 } // namespace dash
19 
20 #endif // DASH__EXCEPTION__RUNTIME_ERROR_H_
This class is a simple memory pool which holds allocates elements of size ValueType.
Definition: AllOf.h:8