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