Sha256: 3800c301b2e2dcb8a70263d7271d47094eef5acb0bca433dddf249b9e48d7e1f
Contents?: true
Size: 592 Bytes
Versions: 30
Compression:
Stored size: 592 Bytes
Contents
# frozen_string_literal: true module Switchman module Errors class ManuallyCreatedShadowRecordError < RuntimeError DEFAULT_MSG = "It looks like you're trying to manually create a shadow record. " \ "Please use Switchman::ActiveRecord::Base#save_shadow_record instead." def initialize(msg = DEFAULT_MSG) super end end class NonExistentShardError < RuntimeError; end class ParallelShardExecError < RuntimeError; end class ShadowRecordError < RuntimeError; end class UnshardedTableError < RuntimeError; end end end
Version data entries
30 entries across 30 versions & 1 rubygems