xtd 0.2.0
argument_exception.h
Go to the documentation of this file.
1 #pragma once
5 #include "system_exception.h"
6 
8 namespace xtd {
22  public:
24 
38  explicit argument_exception(const xtd::ustring& message, const std::error_code& error, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, error, info) {}
43  explicit argument_exception(const xtd::ustring& message, const xtd::ustring& help_link, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, help_link, info) {}
48  explicit argument_exception(const xtd::ustring& message, const std::error_code& error, const xtd::ustring& help_link, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, error, help_link, info) {}
53  explicit argument_exception(const std::exception& inner_exception, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(default_message(), inner_exception, info) {}
58  explicit argument_exception(const xtd::ustring& message, const std::exception& inner_exception, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, inner_exception, info) {}
64  explicit argument_exception(const xtd::ustring& message, const std::exception& inner_exception, const std::error_code& error, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, inner_exception, error, info) {}
70  explicit argument_exception(const xtd::ustring& message, const std::exception& inner_exception, const xtd::ustring& help_link, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, inner_exception, help_link, info) {}
77  explicit argument_exception(const xtd::ustring& message, const std::exception& inner_exception, const std::error_code& error, const xtd::ustring& help_link, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : system_exception(message, inner_exception, error, help_link, info) {}
79 
81  argument_exception(const argument_exception&) = default;
82  argument_exception& operator =(const argument_exception&) = default;
84 
85  private:
86  const char* default_message() const noexcept {return "Value does not fall within the expected range."_t;}
87  };
88 }
89 
104 #define argument_exception_(...) argument_exception(add_csf_(__VA_ARGS__))
Defines the base class for predefined exceptions in the xtd namespace.
Definition: system_exception.h:24
argument_exception(const std::exception &inner_exception, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:53
argument_exception(const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:29
Contains xtd::system_exception exception.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
argument_exception(const xtd::ustring &message, const std::exception &inner_exception, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:58
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
argument_exception(const xtd::ustring &message, const std::exception &inner_exception, const std::error_code &error, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:64
argument_exception(const xtd::ustring &message, const xtd::ustring &help_link, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:43
virtual exception_ref inner_exception() const noexcept
Gets the exception instance that caused the current exception.
argument_exception(const xtd::ustring &message, const std::error_code &error, const xtd::ustring &help_link, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:48
The exception that is thrown when one of the arguments provided to a method is not valid...
Definition: argument_exception.h:21
Provides information about a xtd::diagnostics::stack_frame, which represents a function call on the c...
Definition: stack_frame.h:37
static stack_frame empty() noexcept
Return an empty stack frame.
argument_exception(const xtd::ustring &message, const std::exception &inner_exception, const std::error_code &error, const xtd::ustring &help_link, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:77
argument_exception(const xtd::ustring &message, const std::exception &inner_exception, const xtd::ustring &help_link, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:70
virtual const xtd::ustring & message() const noexcept
Gets message associate to the exception.
argument_exception(const xtd::ustring &message, const std::error_code &error, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:38
virtual const xtd::ustring & help_link() const noexcept
Gets a link to the help file associated with this exception.
argument_exception(const xtd::ustring &message, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class argument_exception.
Definition: argument_exception.h:33