class ThriftClient::Simple::ThriftException

Public Class Methods

new(reason) click to toggle source
# File lib/thrift_client/simple.rb, line 193
def initialize(reason)
  @reason = reason
end

Public Instance Methods

to_s() click to toggle source
# File lib/thrift_client/simple.rb, line 197
def to_s
  "ThriftException(#{@reason.inspect})"
end