AMSDST
debug.cxx
Go to the documentation of this file.
1 #include "TError.h"
2 
3 using namespace std;
4 
5 void ShowError( int level, char const* location, char const* fmt, ... ){
6  /*
7  History
8  2013-12-20: tzc: first impl.
9  */
10 
11  va_list vap;
12  va_start( vap, fmt );
13  ErrorHandler( level, location, fmt, vap );
14  va_end( vap );
15 
16  return;
17 }