class RubyPushNotifications::WNS::WNSInternalError

The Push Notification Service is unable to process the request.

Public Class Methods

new(device_url) click to toggle source
# File lib/ruby-push-notifications/wns/wns_result.rb, line 186
def initialize(device_url)
  @device_url = device_url
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method
# File lib/ruby-push-notifications/wns/wns_result.rb, line 190
def ==(other)
  (other.is_a?(WNSInternalError) &&
    device_url == other.device_url) || super(other)
end