| 71 | class no_such_env : public std::exception { |
| 72 | public: |
| 73 | no_such_env(const std::string& name) throw() : |
| 74 | message(std::string("no such environment: '") + name + "'") {}; |
| 75 | no_such_env(int pos) throw() : |
| 76 | message("no environment in given position '" + toString(pos) + "'") {}; |
| 77 | virtual ~no_such_env() throw() {}; |
nothing calls this directly
no test coverage detected