Go to the documentation of this file.00001 #ifndef Fireworks_Core_FWExpressionException_h
00002 #define Fireworks_Core_FWExpressionException_h
00003
00004
00005
00006
00007
00016
00017
00018
00019
00020
00021
00022
00023 #include <string>
00024
00025
00026
00027
00028
00029 class FWExpressionException {
00030
00031 public:
00032 FWExpressionException(const std::string& iWhat, long iColumn) :
00033 m_what(iWhat), m_column(iColumn) {
00034 }
00035
00036
00037
00038 const std::string& what() const {
00039 return m_what;
00040 }
00041
00042 long column() const {
00043 return m_column;
00044 }
00045
00046
00047
00048
00049 private:
00050
00051
00052
00053
00054
00055 std::string m_what;
00056 long m_column;
00057 };
00058
00059
00060 #endif