File indexing completed on 2023-03-17 10:59:44
0001
0002
0003
0004 #ifndef ECALTBPARSERBLOCKEXCEPTION_H
0005 #define ECALTBPARSERBLOCKEXCEPTION_H
0006
0007 #include <iostream>
0008 #include <string>
0009
0010 class ECALTBParserBlockException {
0011 public:
0012
0013
0014
0015 ECALTBParserBlockException(std::string exceptionInfo_) { info_ = exceptionInfo_; }
0016
0017
0018
0019
0020 const char* what() const throw() { return info_.c_str(); }
0021
0022 protected:
0023 std::string info_;
0024 };
0025
0026 #endif