ki2IOError.h
Go to the documentation of this file.
00001 /* ki2IOError.h
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     } // namespace ki2
00022   } // namespace record
00023   using record::ki2::Ki2IOError;
00024 } // namespace osl
00025 
00026 #endif /* _KI2IOERROR_H */
00027 // ;;; Local Variables:
00028 // ;;; mode:c++
00029 // ;;; c-basic-offset:2
00030 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines