class Scale::Api::APIKeyInvalid

Public Class Methods

new(message = "Provided api_key is invalid. Please double check you passed it in correctly and try again. If you're having trouble finding it, check your Scale Dashboard", status_code = nil) click to toggle source
Calls superclass method Scale::Api::Error::new
# File lib/scale/api/errors.rb, line 40
def initialize(message = "Provided api_key is invalid. Please double check you passed it in correctly and try again. If you're having trouble finding it, check your Scale Dashboard", status_code = nil)
  super(message, status_code)
end