class Transloadit::Exception::RateLimitReached
Exception
raised when Rate limit error response is returned from the API. See Rate Limiting
Public Instance Methods
default_message()
click to toggle source
# File lib/transloadit/exception.rb, line 13 def default_message retry_msg = " Retry in #{@response.wait_time} seconds" if @response "Transloadit Rate Limit Reached.#{retry_msg}" end