CReadoutException

Name

CReadoutException -- Base class for readout specific exceptions

Synopsis


#include <CReadoutException>
         
 class CReadoutException :  public CException {
}

Description

This class is a place holder in the exception class hierarchy. It allows programmers to catch all readout specific exception by catching exceptions of this type.

EXAMPLES

Example 1. Catching readout specific examples


try {
// Code that might throw one of the readout applications
// exceptions:
...
}
catch (CReadoutException& error) {
    // Process the exception here.
    ...
}
                

SEE ALSO

CInvalidPacketStateException(3sbsReadout)