class RitoPlz::API::UnauthorizedException
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 21 def initialize msg = %{ 401 (UNAUTHORIZED) This error indicates that your api key was not authorized for the request you tried to make Common Reason: > Make sure you configured your api key before making the request > Make sure you entered your api key correctly when you configured > Make sure your api key has access to the request you want to make } super(msg) end