class UTApi::ConnectionError

Attributes

wrapped_exception[R]

Public Class Methods

new(wrapped_exception, *args, &block) click to toggle source
Calls superclass method
# File lib/utapi/exceptions.rb, line 10
def initialize(wrapped_exception, *args, &block)
  @wrapped_exception = wrapped_exception
  super(*args, &block)
end

Public Instance Methods

to_s() click to toggle source
# File lib/utapi/exceptions.rb, line 15
def to_s
  "#{@wrapped_exception.class}: #{super}"
end