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

Class unknown_option
PrevUpHomeNext

Class unknown_option

boost::program_options::unknown_option

Synopsis

// In header: <boost/program_options/errors.hpp>


class unknown_option :
  public boost::program_options::error_with_no_option_name
{
public:

  // public member functions
  unknown_option(const std::string & = "");
};

Description

Class thrown when option name is not recognized.

unknown_option public member functions

  1. unknown_option(const std::string & original_token = "");

PrevUpHomeNext