class RitoPlz::API::NotFoundException

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 51
      def initialize
        msg = %{
404 (NOT FOUND)
This error indicates that the server failed to recognize your api request

Common Reason:
  > You're looking for an ID that doesn't exist
        }

        super(msg)
      end