Go to the documentation of this file.00001
00002
00003 #ifndef _KI2IOERROR_H
00004 #define _KI2IOERROR_H
00005
00006 #include <stdexcept>
00007 #include <string>
00008
00009 namespace osl
00010 {
00011 namespace record
00012 {
00013 namespace ki2
00014 {
00015 struct Ki2IOError : public std::runtime_error
00016 {
00017 Ki2IOError(const std::string& w) : std::runtime_error(w)
00018 {
00019 }
00020 };
00021 }
00022 }
00023 using record::ki2::Ki2IOError;
00024 }
00025
00026 #endif
00027
00028
00029
00030