CryptoApis::UriNotFound

Properties

Name Type Description Notes
code String Specifies an error code, e.g. error 404.
message String Specifies the message of the error, i.e. why the error was returned, e.g. error 404 stands for “not found”.
details Array<BannedIpAddressDetails> [optional]

Example

require 'crypto_apis'

instance = CryptoApis::UriNotFound.new(
  code: uri_not_found,
  message: The specified URI has not been found. Check the URI and try again.,
  details: null
)