OpenANN  1.1.0
An open source library for artificial neural networks.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
OpenANNException.h
Go to the documentation of this file.
1 #ifndef OPENANN_UTIL_OPENANN_EXCEPTION_H_
2 #define OPENANN_UTIL_OPENANN_EXCEPTION_H_
3 
4 #include <stdexcept>
5 
6 namespace OpenANN
7 {
8 
15 class OpenANNException : public std::logic_error
16 {
17 public:
18  OpenANNException(const std::string& msg);
19 };
20 
21 } // namespace OpenANN
22 
23 #endif // OPENANN_UTIL_OPENANN_EXCEPTION_H_