LAMA
/home/brandes/workspace/LAMA/src/lama/mpi/MPIException.hpp
Go to the documentation of this file.
00001 
00033 #ifndef LAMA_MPIEXCEPTION_HPP_
00034 #define LAMA_MPIEXCEPTION_HPP_
00035 
00036 // for dll_import
00037 #include <lama/config.hpp>
00038 
00039 // base classes
00040 #include <lama/exception/Exception.hpp>
00041 
00042 namespace lama
00043 {
00044 
00045 class LAMA_DLL_IMPORTEXPORT MPIException: public Exception
00046 {
00047 public:
00048     MPIException(const std::string& message, const int mpiStatus);
00049 
00050     virtual ~MPIException() throw();
00051 };
00052 
00053 }
00054 
00055 #endif // LAMA_MPIEXCEPTION_HPP_