Class: Apache::Hadoop::Hbase::Thrift::IllegalArgument

Inherits:
Thrift::Exception
  • Object
show all
Includes:
Thrift::Struct, Thrift::Struct_Union
Defined in:
lib/adapter/hbase/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.



237
238
239
240
# File 'lib/adapter/hbase/hbase_types.rb', line 237

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

Instance Method Details

#struct_fieldsObject



248
# File 'lib/adapter/hbase/hbase_types.rb', line 248

def struct_fields; FIELDS; end

#validateObject



250
251
# File 'lib/adapter/hbase/hbase_types.rb', line 250

def validate
end