All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
csaIOError.h
Go to the documentation of this file.
1 /* csaIOError.h
2  */
3 #ifndef _CSAIOERROR_H
4 #define _CSAIOERROR_H
5 
6 #include <stdexcept>
7 #include <string>
8 
9 namespace osl
10 {
11  namespace record
12  {
13  namespace csa
14  {
15  struct CsaIOError : public std::runtime_error
16  {
17  CsaIOError(const std::string& w) : std::runtime_error(w)
18  {
19  }
20  };
21  } // namespace csa
22  } // namespace record
23  using record::csa::CsaIOError;
24 } // namespace osl
25 
26 #endif /* _CSAIOERROR_H */
27 // ;;; Local Variables:
28 // ;;; mode:c++
29 // ;;; c-basic-offset:2
30 // ;;; End: