class RitoPlz::API::ForbiddenException

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 37
      def initialize
        msg = %{
403 (FORBIDDEN)
This error indicates that you are forbidden to access this request

Common Reason:
  > Make sure you configured your api key before making the request
        }

        super(msg)
      end