EEROS  1.0.0.0
API for the EEROS Real-Time Robotics Framework
MatrixIndexOutOfBoundException.hpp
Go to the documentation of this file.
1 #ifndef ORG_EEROS_CORE_MATRIXINDEXOUTOFBOUNDEXCEPTION_HPP
2 #define ORG_EEROS_CORE_MATRIXINDEXOUTOFBOUNDEXCEPTION_HPP
3 
4 #include <eeros/core/Fault.hpp>
5 #include <string>
6 
7 namespace eeros {
8  namespace math {
10 
11  public:
12  MatrixIndexOutOfBoundException(unsigned int i, unsigned int I);
13  MatrixIndexOutOfBoundException(unsigned int m, unsigned int M, unsigned int n, unsigned int N);
14  MatrixIndexOutOfBoundException(unsigned int m, unsigned int M, unsigned int n, unsigned int N, std::string postfix);
15  virtual ~MatrixIndexOutOfBoundException() throw();
16  };
17  };
18 };
19 
20 #endif // ORG_EEROS_CORE_MATRIXINDEXOUTOFBOUNDEXCEPTION_HPP
virtual ~MatrixIndexOutOfBoundException()
Definition: MatrixIndexOutOfBoundException.cpp:24
Definition: MatrixIndexOutOfBoundException.hpp:9
MatrixIndexOutOfBoundException(unsigned int i, unsigned int I)
Definition: MatrixIndexOutOfBoundException.cpp:6
Definition: Config.hpp:14
Definition: Fault.hpp:9