xtd 0.2.0
file_format_exception.h
Go to the documentation of this file.
1 #pragma once
5 #include "../format_exception.h"
6 
8 namespace xtd {
10  namespace io {
28  public:
30 
44  explicit file_format_exception(const xtd::ustring& message, const std::error_code& error, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : format_exception(message, error, info) {}
54  explicit file_format_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()) : format_exception(message, error, help_link, info) {}
59  explicit file_format_exception(const std::exception& inner_exception, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : format_exception(default_message(), inner_exception, info) {}
64  explicit file_format_exception(const xtd::ustring& message, const std::exception& inner_exception, const xtd::diagnostics::stack_frame& info = xtd::diagnostics::stack_frame::empty()) : format_exception(message, inner_exception, info) {}
70  explicit file_format_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()) : format_exception(message, inner_exception, error, info) {}
76  explicit file_format_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()) : format_exception(message, inner_exception, help_link, info) {}
83  explicit file_format_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()) : format_exception(message, inner_exception, error, help_link, info) {}
85 
88  file_format_exception& operator =(const file_format_exception&) = default;
90 
91  private:
92  const char* default_message() const noexcept {return "Input file or data stream does not conform to the expected file format specification."_t;}
93  };
94  }
95 }
96 
111 #define file_format_exception_(...) file_format_exception(add_csf_(__VA_ARGS__))
file_format_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 file_format_exception.
Definition: file_format_exception.h:64
file_format_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 file_format_exception.
Definition: file_format_exception.h:54
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
file_format_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 file_format_exception.
Definition: file_format_exception.h:70
file_format_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 file_format_exception.
Definition: file_format_exception.h:83
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
file_format_exception(const xtd::ustring &message, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class file_format_exception.
Definition: file_format_exception.h:39
file_format_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 file_format_exception.
Definition: file_format_exception.h:44
The exception that is thrown when the format of an argument does not meet the parameter specification...
Definition: file_format_exception.h:27
virtual exception_ref inner_exception() const noexcept
Gets the exception instance that caused the current exception.
file_format_exception(const std::exception &inner_exception, const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class file_format_exception.
Definition: file_format_exception.h:59
file_format_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 file_format_exception.
Definition: file_format_exception.h:76
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.
The exception that is thrown when the format of an argument does not meet the parameter specification...
Definition: format_exception.h:18
virtual const xtd::ustring & message() const noexcept
Gets message associate to the exception.
file_format_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 file_format_exception.
Definition: file_format_exception.h:49
file_format_exception(const xtd::diagnostics::stack_frame &info=xtd::diagnostics::stack_frame::empty())
Create a new instance of class file_format_exception.
Definition: file_format_exception.h:35
virtual const xtd::ustring & help_link() const noexcept
Gets a link to the help file associated with this exception.