Class Thrift::TransportException
In: lib/thrift/transport/base_transport.rb
lib/thrift/transport/base_transport.rb
Parent: Exception

Methods

new   new  

Constants

UNKNOWN = 0
NOT_OPEN = 1
ALREADY_OPEN = 2
TIMED_OUT = 3
END_OF_FILE = 4
UNKNOWN = 0
NOT_OPEN = 1
ALREADY_OPEN = 2
TIMED_OUT = 3
END_OF_FILE = 4

Attributes

type  [R] 
type  [R] 

Public Class methods

[Source]

    # File lib/thrift/transport/base_transport.rb, line 31
31:     def initialize(type=UNKNOWN, message=nil)
32:       super(message)
33:       @type = type
34:     end

[Source]

    # File lib/thrift/transport/base_transport.rb, line 31
31:     def initialize(type=UNKNOWN, message=nil)
32:       super(message)
33:       @type = type
34:     end

[Validate]