Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class exception

boost::mpi::exception — Catch-all exception class for MPI errors.

Synopsis

// In header: <boost/mpi/exception.hpp>


class exception : public  {
public:
  // construct/copy/destruct
  (, );
  ~();

  // public member functions
   () ;
   () ;
   () ;
   () ;
};

Description

Instances of this class will be thrown when an MPI error occurs. MPI failures that trigger these exceptions may or may not be recoverable, depending on the underlying MPI implementation. Consult the documentation for your MPI implementation to determine the effect of MPI errors.

exception public construct/copy/destruct

  1. ( routine,  result_code);

    Build a new exception exception.

    Parameters:

    result_code

    The result code returned from the MPI routine that aborted with an error.

    routine

    The MPI routine in which the error occurred. This should be a pointer to a string constant: it will not be copied.

  2. ~();

exception public member functions

  1.  () ;

    A description of the error that occurred.

  2.  () ;

    Retrieve the name of the MPI routine that reported the error.

  3.  () ;
    Retrieve the result code returned from the MPI routine that reported the error.
  4.  () ;
    Returns the MPI error class associated with the error that triggered this exception.

PrevUpHomeNext