class Riak::CrdtError::UnexpectedDataType

Public Class Methods

new(given_type, expected_type) click to toggle source
Calls superclass method
# File lib/riak/errors/crdt_error.rb, line 25
def initialize(given_type, expected_type)
  super t('crdt.unexpected_type',
          given: given_type,
          expected: expected_type)
end