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

#include <vw_exception.h>

Inheritance diagram for VW::vw_argument_disagreement_exception:
VW::vw_exception

Public Member Functions

 vw_argument_disagreement_exception (const char *file, int lineNumber, const std::string &message)
 
 vw_argument_disagreement_exception (const vw_argument_disagreement_exception &ex)
 
vw_argument_disagreement_exceptionoperator= (const vw_argument_disagreement_exception &other)
 
 ~vw_argument_disagreement_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 45 of file vw_exception.h.

Constructor & Destructor Documentation

◆ vw_argument_disagreement_exception() [1/2]

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

Definition at line 48 of file vw_exception.h.

50  {
51  }
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_argument_disagreement_exception() [2/2]

VW::vw_argument_disagreement_exception::vw_argument_disagreement_exception ( const vw_argument_disagreement_exception ex)
inline

Definition at line 53 of file vw_exception.h.

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

◆ ~vw_argument_disagreement_exception()

VW::vw_argument_disagreement_exception::~vw_argument_disagreement_exception ( )
overridedefaultnoexcept

Member Function Documentation

◆ operator=()

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

Definition at line 55 of file vw_exception.h.

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

56  {
57  // check for self-assignmentW
58  if (&other == this)
59  return *this;
61  return *this;
62  }
vw_exception & operator=(const vw_exception &other) noexcept
Definition: vw_exception.cc:20

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