My Project
ki2IOError.h
Go to the documentation of this file.
1/* ki2IOError.h
2 */
3#ifndef _KI2IOERROR_H
4#define _KI2IOERROR_H
5
6#include <stdexcept>
7#include <string>
8
9namespace osl
10{
11 namespace record
12 {
13 namespace ki2
14 {
15 struct Ki2IOError : public std::runtime_error
16 {
17 Ki2IOError(const std::string& w) : std::runtime_error(w)
18 {
19 }
20 };
21 } // namespace ki2
22 } // namespace record
23 using record::ki2::Ki2IOError;
24} // namespace osl
25
26#endif /* _KI2IOERROR_H */
27// ;;; Local Variables:
28// ;;; mode:c++
29// ;;; c-basic-offset:2
30// ;;; End:
Ki2IOError(const std::string &w)
Definition ki2IOError.h:17