class ApiClient::Exceptions::NotFound

Exception for a Not Found Response ( Status Code : 404 ). The server has not found anything matching the Request-URI.

Public Class Methods

initialize(url) click to toggle source

Initialize a new exception.

@return [NotFound] a new exception.

# File lib/api-client/exceptions/not_found.rb, line 7
def self.initialize(url)
  super("The requested url (#{url}) could not be found!")
end