class CloudParty::Errors::UnRecognizedEndpointError

UnRecognizedEndpointError

When an endpoint is not recognized by the gem logic

Attributes

endpoint[R]
klass[R]

Public Class Methods

new(endpoint, klass) click to toggle source
Calls superclass method
# File lib/cloud_party/exceptions/un_recognized_endpoint_error.rb, line 12
def initialize(endpoint, klass)
  super("'#{endpoint}' is not a recognized endpoint for class #{klass}")
  @endpoint = endpoint
  @klass = klass
end