Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the develop branch, built from commit 44a1f3ea49.
PrevUpHomeNext

exception

Base exception class for Boost.Geometry algorithms.

Description

This class is never thrown. All exceptions thrown in Boost.Geometry are derived from exception, so it might be convenient to catch it.

Synopsis

class exception
      : public std::exception
{
  // ...
};

Member Function(s)

Function

Description

Parameters

Returns

char const * what()

Header

#include <boost/geometry/core/exception.hpp>


PrevUpHomeNext