class Houston::Notification::APNSError

Constants

CODES

See: developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Chapters/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW12

Attributes

code[R]

Public Class Methods

new(code) click to toggle source
Calls superclass method
# File lib/houston/notification.rb, line 23
def initialize(code)
  raise ArgumentError unless CODES.include?(code)
  super(CODES[code])
  @code = code
end