// $Id: CovMatrixThrow.cc,v 1.3 2002/09/19 16:45:18 sachs Exp $ // David Sachs - Fermilab - April 2002 #include "CovMatrices/CovMatrix.h" // Routine to handle CovMatrix logic errors // This version prints the error message to cerr and aborts void CovMatrices::CovMatrixThrow( const std::string& errormessage) { std::cerr << "\n\n**** COVMATRIX ERROR ****\n\n"; std::cerr << errormessage << std::endl; exit(2); }