class ApiClient::Exceptions::Forbidden

Exception for a Forbidden Response ( Status Code : 403 ). The server understood the request, but is refusing to fulfill it.

Public Class Methods

initialize() click to toggle source

Initialize a new exception.

@return [Forbidden] a new exception.

# File lib/api-client/exceptions/forbidden.rb, line 7
def self.initialize
  super('Forbidden!')
end