Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class exception

boost::container::exception

Synopsis

// In header: <boost/container/throw_exception.hpp>


class exception : public std::exception {
public:

  // public member functions
  explicit exception(const char *);
  virtual const char * what() const noexcept;
};

Description

exception public member functions

  1. explicit exception(const char * msg);
  2. virtual const char * what() const noexcept;

PrevUpHomeNext