Class: HbaseClient::Thrift::IllegalArgument

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

Overview

argument was passed into a procedure.

Constant Summary collapse

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

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ IllegalArgument

Returns a new instance of IllegalArgument.



287
288
289
290
# File 'lib/hbase-client/thrift/hbase_types.rb', line 287

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

Instance Method Details

#struct_fieldsObject



298
# File 'lib/hbase-client/thrift/hbase_types.rb', line 298

def struct_fields; FIELDS; end

#validateObject



300
301
# File 'lib/hbase-client/thrift/hbase_types.rb', line 300

def validate
end