Class: Apache::Hadoop::Hbase::Thrift::IOError

Inherits:
Thrift::Exception
  • Object
show all
Includes:
Thrift::Struct, Thrift::Struct_Union
Defined in:
lib/thrift/hbase/hbase_types.rb

Overview

to the Hbase master or an Hbase region server. Also used to return more general Hbase error conditions.

Constant Summary collapse

MESSAGE =
1
FIELDS =
{
  MESSAGE => {:type => ::Thrift::Types::STRING, :name => 'message'}
}

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ IOError

Returns a new instance of IOError.



184
185
186
187
# File 'lib/thrift/hbase/hbase_types.rb', line 184

def initialize(message=nil)
  super()
  self.message = message
end

Instance Method Details

#struct_fieldsObject



195
# File 'lib/thrift/hbase/hbase_types.rb', line 195

def struct_fields; FIELDS; end

#validateObject



197
198
# File 'lib/thrift/hbase/hbase_types.rb', line 197

def validate
end