class Phishin::Client::EmptyResponseError

Raised when there is no response body

Attributes

url[R]

Public Class Methods

new(url) click to toggle source
Calls superclass method
# File lib/phishin/client/errors.rb, line 15
def initialize(url)
  @url = url
  super("phish.in api response body was empty for url=#{url}")
end