view Exception/NoSuchValueException.hpp @ 106:95fb1bcf7e24

Constant for turning follow symlinks on and off.
author Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no>
date Tue, 18 Feb 2014 17:05:48 +0100
parents c9447697609f
children
line wrap: on
line source

#ifndef NOSUCHVALUEEXCEPTION_HPP
#define NOSUCHVALUEEXCEPTION_HPP

#include "Exception.hpp"

class NoSuchValueException : public Exception
{
public:
  NoSuchValueException(const string_t& errMsg = string_t());
  virtual void raise() const;
};

#endif //NOSUCHVALUEEXCEPTION_HPP