19struct IOException :
public std::exception {
26 IOException(
const std::string &_message,
27 const std::string &_filename);
28 virtual ~IOException() throw() ;
30 virtual const
char* what ( ) const throw ();
33std::ostream& operator<<(std::ostream& os, const IOException &entry);
C++ class: doctemplate.h.
Definition bufferedoutput.cpp:13
std::string message
detailed message for this exception
Definition ioexception.h:21
std::string filename
filename of the element that caused this exception
Definition ioexception.h:24