class Growl::GNTP::ResponseError

Raised when the server indicates a GNTP response error

Attributes

headers[R]

The headers from the error response

Public Class Methods

new(message, headers) click to toggle source

Creates a new error with message from the response Error-Description header and the full headers

Calls superclass method
# File lib/ruby-growl/gntp.rb, line 51
def initialize message, headers
  super message

  @headers = headers
end