#include <iosfwd>
#include <string>
#include "Rtypes.h"
Go to the source code of this file.
Classes | |
class | TDbiException |
Concept An object that records a single database exception. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &s, const TDbiException &e) |
Append message describing this exception to the std::ostream 'os'. |
std::ostream& operator<< | ( | std::ostream & | s, | |
const TDbiException & | e | |||
) |
Append message describing this exception to the std::ostream 'os'.
Definition at line 84 of file TDbiException.cxx.
References TDbiException::GetErrorCode(), and TDbiException::GetMessage().
00084 { 00085 00086 os << "Error " << e.GetErrorCode() 00087 << " (" << e.GetMessage() << ")" << endl; 00088 return os; 00089 00090 }