Files
danbooru/app/logical/iqdb/responses/response_300.rb
2014-03-24 13:22:03 -07:00

16 lines
245 B
Ruby

module Iqdb
module Responses
class Response_300 < Error
attr_reader :message
def initialize(response_string)
@message = response_string
end
def to_s
"Error: #{message}"
end
end
end
end