#include <MmapError.h>
class CMmapError : public CException {CMmapError(const char* pDoing);
CMmapError(const std::string& rDoing);
CMmapError(const CMmapError& aCMmapError);
CMmapError operator=(const CMmapError& aCMmapError);
int operator==(const CMmapError& aCMmapError);
virtual const const char* ReasonText();
}
This class is an exception that can be thrown by the
CVMEInterface::Map
method. It is derived
from the CException
class. See that page for full documentation on exception objects.