timeSeries exception class More...
#include <tsExceptions.h>
Inherited by BadDimension, BadType, Dimension_error, Length_error, OutOfRange, and tsResult_Dimension_error.
Public Member Functions | |
virtual void | debug_print () |
print information about the cause of the exception |
timeSeries exception class
This is the base class for generic timeSeries exceptions. To handle any exception in the timeSeries classes, this class can be caught and handled.
try { // analysis code here... } catch (tsException& tse) { tse.debug_print(); cerr << "skipping to next file..." << endl; }