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

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



181
182
183
184
# File 'lib/thrift/hbase_types.rb', line 181

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

Instance Method Details

#struct_fieldsObject



192
# File 'lib/thrift/hbase_types.rb', line 192

def struct_fields; FIELDS; end

#validateObject



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

def validate
end