Sha256: bfa4beccd43c759dde55b5780d953716612593064d980c671fafe03cee100f07
Contents?: true
Size: 351 Bytes
Versions: 10
Compression:
Stored size: 351 Bytes
Contents
module Alexa # All Alexa exceptions can be cought by rescuing: # Alexa::StandardError # class StandardError < StandardError; end class ArgumentError < StandardError; end class ResponseError < StandardError attr_reader :response def initialize(message, response) @response = response super(message) end end end
Version data entries
10 entries across 10 versions & 1 rubygems