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

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

Overview

An IllegalArgument exception indicates an illegal or invalid 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.



180
181
182
183
# File 'lib/massive_record/adapters/thrift/hbase/hbase_types.rb', line 180

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

Instance Method Details

#struct_fieldsObject



191
# File 'lib/massive_record/adapters/thrift/hbase/hbase_types.rb', line 191

def struct_fields; FIELDS; end

#validateObject



193
194
# File 'lib/massive_record/adapters/thrift/hbase/hbase_types.rb', line 193

def validate
end