Exception: Couchbase::Error::View

Inherits:
Base
  • Object
show all
Defined in:
lib/couchbase/view.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#cas, #error, #inner_exception, #key, #operation, #status

Instance Method Summary collapse

Constructor Details

#initialize(from, reason, prefix = "SERVER: ") ⇒ View

Returns 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

#fromObject (readonly)

Returns the value of attribute from.



24
25
26
# File 'lib/couchbase/view.rb', line 24

def from
  @from
end

#reasonObject (readonly)

Returns the value of attribute reason.



24
25
26
# File 'lib/couchbase/view.rb', line 24

def reason
  @reason
end