XCube Stream Reader SDK
x3c/include/exceptions/IoException.h
00001 /*
00002  * ParserException.h
00003  *
00004  *  Created on: Oct 26, 2010
00005  *      Author: nilham
00006  */
00007 
00008 #ifndef IOEXCEPTION_H_
00009 #define IOEXCEPTION_H_
00010 
00011 #include <exception>
00012 
00013 class IoException : public std::exception
00014 {
00015 public:
00016         IoException(const char *errMsg);
00017         virtual ~IoException() throw();
00018         const char* what() const throw();
00019 
00020 private:
00021         char *errorMessage;
00022 };
00023 
00024 #endif /* IOEXCEPTION_H_ */
 All Classes Files Functions Variables Typedefs Friends Defines