class ApiClient::Exceptions::BadlyConfigured

Exception for requests where the full path is not properly configured.

Public Class Methods

initialize(name) click to toggle source

Initialize a new exception.

@return [NotConfigured] a new exception.

Calls superclass method
# File lib/api-client/exceptions/badly_configured.rb, line 6
def self.initialize(name)
  super("The api path #{name} is not properly configured!")
end