lib/ably/exceptions.rb in ably-0.8.1 vs lib/ably/exceptions.rb in ably-0.8.2
- old
+ new
@@ -58,11 +58,11 @@
class Standard < BaseAblyException; end
# The HTTP request has returned a 500 error
class ServerError < BaseAblyException; end
- # PaginatedResource cannot retrieve the page
+ # PaginatedResult cannot retrieve the page
class InvalidPageError < BaseAblyException; end
# The expected response from the server was invalid
class InvalidResponseBody < BaseAblyException; end
@@ -72,7 +72,10 @@
# The token request could not be created
class TokenRequestError < BaseAblyException; end
# The message could not be delivered to the server
class MessageDeliveryError < BaseAblyException; end
+
+ # The data payload type is not supported
+ class UnsupportedDataTypeError < BaseAblyException; end
end
end