1 //
2 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2008
3 //
4 // Copyright: See COPYING file that comes with this distribution
5 //
6
7 #ifndef IOEXCEPTION_H_
8 #define IOEXCEPTION_H_
9
10 #include <ostream>
11 #include <exception>
12 #include <string>
13
15
22
25
27 const std::string &_filename);
29
30 virtual const char* what ( ) const throw ();
31 };
32
34
35 }
36
37 #endif /*IOEXCEPTION_H_*/
std::string filename
filename of the element that caused this exception
Definition: ioexception.h:24
C++ class: doctemplate.h.
Definition: bufferedoutput.cpp:13
std::string message
detailed message for this exception
Definition: ioexception.h:21
Exception representing an error in an input/output operation.
Definition: ioexception.h:19