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

#include <exceptn.h>

Inheritance diagram for Botan::Lookup_Error:
Botan::Exception Botan::Algorithm_Not_Found Botan::Provider_Not_Found

Public Member Functions

virtual int error_code () const noexcept
ErrorType error_type () const noexcept override
 Lookup_Error (std::string_view err)
 Lookup_Error (std::string_view type, std::string_view algo, std::string_view provider="")
const char * what () const noexcept override

Detailed Description

A request was made for some kind of object which could not be located

Definition at line 327 of file exceptn.h.

Constructor & Destructor Documentation

◆ Lookup_Error() [1/2]

Botan::Lookup_Error::Lookup_Error ( std::string_view err)
inlineexplicit

Create a Lookup_Error exception

Parameters
erra description of the object which was not found

Definition at line 333 of file exceptn.h.

333: Exception(err) {}
Exception(std::string_view msg)
Definition exceptn.cpp:71

References Botan::Exception::Exception().

Referenced by Botan::Algorithm_Not_Found::Algorithm_Not_Found(), and Botan::Provider_Not_Found::Provider_Not_Found().

◆ Lookup_Error() [2/2]

Botan::Lookup_Error::Lookup_Error ( std::string_view type,
std::string_view algo,
std::string_view provider = "" )

Create a Lookup_Error exception

Parameters
typethe kind of object which was requested
algothe algorithm name which was requested
providerthe provider which was requested, if any

Definition at line 96 of file exceptn.cpp.

96 :
97 Exception(format_lookup_error(type, algo, provider)) {}

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::Lookup_Error::error_type ( ) const
inlineoverridevirtualnoexcept

Return the error type of this exception

Returns
the error type of this exception

Reimplemented from Botan::Exception.

Definition at line 347 of file exceptn.h.

347{ return ErrorType::LookupError; }

References Botan::LookupError.

◆ what()

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

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