class Pushing::DeliveryError

Attributes

notification[R]
response[R]

Public Class Methods

new(message, response = nil, notification = nil) click to toggle source
Calls superclass method
# File lib/pushing/platforms.rb, line 99
def initialize(message, response = nil, notification = nil)
  super(message)
  @response = response
  @notification = notification
end