Exception: HBase::BatchException

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/hbase-jruby/batch_exception.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(x, results) ⇒ BatchException

Returns a new instance of BatchException.



5
6
7
8
9
# File 'lib/hbase-jruby/batch_exception.rb', line 5

def initialize x, results
  super x.to_s
  @java_exception = x
  @results = results
end

Instance Attribute Details

#java_exceptionObject (readonly)

Returns the value of attribute java_exception.



3
4
5
# File 'lib/hbase-jruby/batch_exception.rb', line 3

def java_exception
  @java_exception
end

#resultsObject (readonly)

Returns the value of attribute results.



3
4
5
# File 'lib/hbase-jruby/batch_exception.rb', line 3

def results
  @results
end