Sha256: afc2d809b4bd8445af91612a914534148ed7513decea78828bd3101798bc28fe
Contents?: true
Size: 365 Bytes
Versions: 18
Compression:
Stored size: 365 Bytes
Contents
# Exception for a Not Found Response ( Status Code : 404 ). # The server has not found anything matching the Request-URI. class ApiClient::Exceptions::NotFound < ApiClient::Exceptions::Generic # Initialize a new exception. # # @return [NotFound] a new exception. def self.initialize(url) super("The requested url (#{url}) could not be found!") end end
Version data entries
18 entries across 18 versions & 1 rubygems