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