Botan 3.13.0
Crypto and TLS for C&
Botan::Decoding_Error Class Reference

#include <exceptn.h>

Inheritance diagram for Botan::Decoding_Error:
Botan::Exception Botan::BER_Decoding_Error Botan::PKCS8_Exception Botan::Roughtime::Roughtime_Error Botan::BER_Bad_Tag

Public Member Functions

 Decoding_Error (std::string_view category, std::string_view err)
 Decoding_Error (std::string_view msg, const std::exception &e)
 Decoding_Error (std::string_view name)
virtual int error_code () const noexcept
ErrorType error_type () const noexcept override
const char * what () const noexcept override

Detailed Description

A decoding error occurred.

Definition at line 245 of file exceptn.h.

Constructor & Destructor Documentation

◆ Decoding_Error() [1/3]

Botan::Decoding_Error::Decoding_Error ( std::string_view name)
explicit

Create a Decoding_Error exception

Parameters
namea description of the decoding which failed

Definition at line 125 of file exceptn.cpp.

125: Exception(name) {}
Exception(std::string_view msg)
Definition exceptn.cpp:71

References Botan::Exception::Exception().

Referenced by Botan::BER_Decoding_Error::BER_Decoding_Error(), Botan::PKCS8_Exception::PKCS8_Exception(), and Botan::Roughtime::Roughtime_Error::Roughtime_Error().

◆ Decoding_Error() [2/3]

Botan::Decoding_Error::Decoding_Error ( std::string_view category,
std::string_view err )

Create a Decoding_Error exception

Parameters
categorythe kind of object being decoded
erra description of the problem

Definition at line 127 of file exceptn.cpp.

127 :
128 Exception(fmt("{}: {}", category, err)) {}
std::string fmt(std::string_view format, const T &... args)
Definition fmt.h:53

References Botan::Exception::Exception(), and Botan::fmt().

◆ Decoding_Error() [3/3]

Botan::Decoding_Error::Decoding_Error ( std::string_view msg,
const std::exception & e )

Create a Decoding_Error exception

Parameters
msga description of the problem
ethe exception which caused this one

Definition at line 130 of file exceptn.cpp.

130: Exception(msg, e) {}

References Botan::Exception::Exception().

Member Function Documentation

◆ error_code()

virtual int Botan::Exception::error_code ( ) const
inlinevirtualnoexceptinherited

Return an error code associated with this exception, or otherwise 0.

The domain of this error varies depending on the source, for example on POSIX systems it might be errno, while on a Windows system it might be the result of GetLastError or WSAGetLastError.

Reimplemented in Botan::CommonCrypto_Error, Botan::Compression_Error, Botan::PKCS11::PKCS11_ReturnError, Botan::SQL_Database::SQL_DB_Error, Botan::System_Error, Botan::TLS::TLS_Exception, Botan::TPM2::Error, and Botan_FFI::FFI_Error.

Definition at line 108 of file exceptn.h.

108{ return 0; }

◆ error_type()

ErrorType Botan::Decoding_Error::error_type ( ) const
inlineoverridevirtualnoexcept

Return the error type of this exception

Returns
the error type of this exception

Reimplemented from Botan::Exception.

Reimplemented in Botan::Roughtime::Roughtime_Error.

Definition at line 271 of file exceptn.h.

References Botan::DecodingFailure.

◆ what()

const char * Botan::Exception::what ( ) const
inlineoverridenoexceptinherited

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