Vowpal Wabbit
Public Member Functions | List of all members
VW::vw_unrecognised_option_exception Class Reference

#include <vw_exception.h>

Inheritance diagram for VW::vw_unrecognised_option_exception:
VW::vw_exception

Public Member Functions

 vw_unrecognised_option_exception (const char *file, int lineNumber, const std::string &message)
 
 vw_unrecognised_option_exception (const vw_unrecognised_option_exception &ex)
 
vw_unrecognised_option_exceptionoperator= (const vw_unrecognised_option_exception &other)
 
 ~vw_unrecognised_option_exception () noexcept override=default
 
- Public Member Functions inherited from VW::vw_exception
 vw_exception (const char *file, int lineNumber, std::string const &message) noexcept
 
 vw_exception (const vw_exception &ex) noexcept
 
vw_exceptionoperator= (const vw_exception &other) noexcept
 
 ~vw_exception () noexcept override
 
const char * what () const noexcept override
 
const char * Filename () const
 
int LineNumber () const
 

Detailed Description

Definition at line 89 of file vw_exception.h.

Constructor & Destructor Documentation

◆ vw_unrecognised_option_exception() [1/2]

VW::vw_unrecognised_option_exception::vw_unrecognised_option_exception ( const char *  file,
int  lineNumber,
const std::string &  message 
)
inline

Definition at line 92 of file vw_exception.h.

94  {
95  }
std::string message
Definition: vw_exception.h:28
const char * file
Definition: vw_exception.h:26
vw_exception(const char *file, int lineNumber, std::string const &message) noexcept
Definition: vw_exception.cc:10

◆ vw_unrecognised_option_exception() [2/2]

VW::vw_unrecognised_option_exception::vw_unrecognised_option_exception ( const vw_unrecognised_option_exception ex)
inline

Definition at line 97 of file vw_exception.h.

97 : vw_exception(ex) {}
vw_exception(const char *file, int lineNumber, std::string const &message) noexcept
Definition: vw_exception.cc:10

◆ ~vw_unrecognised_option_exception()

VW::vw_unrecognised_option_exception::~vw_unrecognised_option_exception ( )
overridedefaultnoexcept

Member Function Documentation

◆ operator=()

vw_unrecognised_option_exception& VW::vw_unrecognised_option_exception::operator= ( const vw_unrecognised_option_exception other)
inline

Definition at line 99 of file vw_exception.h.

References VW::vw_exception::operator=().

100  {
101  // check for self-assignment
102  if (&other == this)
103  return *this;
105  return *this;
106  }
vw_exception & operator=(const vw_exception &other) noexcept
Definition: vw_exception.cc:20

The documentation for this class was generated from the following file: