Sha256: 44a10fc522d32a1bb041a5537cafebb32fc9ce4a8583319d2de88276038468b1

Contents?: true

Size: 246 Bytes

Versions: 1

Compression:

Stored size: 246 Bytes

Contents

module RemotelyExceptional
  class Error < ::RuntimeError
  end

  class InvalidHandlerResponse < RemotelyExceptional::Error
    attr_accessor :original_exception
    def initialize(*)
      super
      @original_exception = $!
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
remotely_exceptional-0.0.1 lib/remotely_exceptional/exceptions.rb