Exception: ApiClient::Exceptions::NotFound

Inherits:
Generic
  • Object
show all
Defined in:
lib/api-client/exceptions/not_found.rb

Overview

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

Class Method Summary collapse

Class Method Details

.initialize(url) ⇒ NotFound

Initialize a new exception.

Returns:



7
8
9
# File 'lib/api-client/exceptions/not_found.rb', line 7

def self.initialize(url)
  super("The requested url (#{url}) could not be found!")
end