Exception: Couchbase::Error::View
- Inherits:
-
Base
- Object
- StandardError
- Base
- Couchbase::Error::View
- Defined in:
- lib/couchbase/view.rb
Instance Attribute Summary (collapse)
-
- (Object) from
readonly
Returns the value of attribute from.
-
- (Object) reason
readonly
Returns the value of attribute reason.
Attributes inherited from Base
#cas, #error, #inner_exception, #key, #operation, #status
Instance Method Summary (collapse)
-
- (View) initialize(from, reason, prefix = "SERVER: ")
constructor
A new instance of View.
Constructor Details
- (View) initialize(from, reason, prefix = "SERVER: ")
A new instance of View
26 27 28 29 30 |
# File 'lib/couchbase/view.rb', line 26 def initialize(from, reason, prefix = "SERVER: ") @from = from @reason = reason super("#{prefix}#{from}: #{reason}") end |
Instance Attribute Details
- (Object) from (readonly)
Returns the value of attribute from
24 25 26 |
# File 'lib/couchbase/view.rb', line 24 def from @from end |
- (Object) reason (readonly)
Returns the value of attribute reason
24 25 26 |
# File 'lib/couchbase/view.rb', line 24 def reason @reason end |