class Scale::Api::Unauthorized

Public Class Methods

new(message = "Please ensure that the api_key provided is correct. To find your API key, go to your Scale Dashboard", status_code = 401) click to toggle source
Calls superclass method Scale::Api::Error::new
# File lib/scale/api/errors.rb, line 22
def initialize(message = "Please ensure that the api_key provided is correct. To find your API key, go to your Scale Dashboard", status_code = 401)
  super(message, status_code)
end