Exception: LLDB::InternalBindingError
- Defined in:
- lib/lldb/error.rb
Instance Attribute Summary collapse
-
#native_code ⇒ Object
readonly
Returns the value of attribute native_code.
-
#native_message ⇒ Object
readonly
Returns the value of attribute native_message.
-
#operation ⇒ Object
readonly
Returns the value of attribute operation.
Instance Method Summary collapse
-
#initialize(operation, native_message, native_code) ⇒ InternalBindingError
constructor
A new instance of InternalBindingError.
Constructor Details
#initialize(operation, native_message, native_code) ⇒ InternalBindingError
Returns a new instance of InternalBindingError.
40 41 42 43 44 45 |
# File 'lib/lldb/error.rb', line 40 def initialize(operation, , native_code) @operation = operation @native_message = @native_code = native_code super("Native wrapper operation '#{operation}' failed (code=#{native_code}): #{}") end |
Instance Attribute Details
#native_code ⇒ Object (readonly)
Returns the value of attribute native_code.
34 35 36 |
# File 'lib/lldb/error.rb', line 34 def native_code @native_code end |
#native_message ⇒ Object (readonly)
Returns the value of attribute native_message.
34 35 36 |
# File 'lib/lldb/error.rb', line 34 def @native_message end |
#operation ⇒ Object (readonly)
Returns the value of attribute operation.
34 35 36 |
# File 'lib/lldb/error.rb', line 34 def operation @operation end |