Exception: InstantCache::LockInconsistency

Inherits:
Exception
  • Object
show all
Defined in:
lib/instantcache/exceptions.rb

Overview

Our record of the locked status of a cell differs from the information stored in the memcache about it. This Is Not Good.

Constant Summary collapse

MessageFormat =

raise LockInconsistency

=> InstantCache::LockInconsistency: interlock cell inconsistency

raise LockInconsistency.new('name', 'true', 'false')

=> InstantCache::LockInconsistency: interlock cell inconsistency
          cell='name', expected='true', actual='false'
[
 'interlock cell inconsistency',
 "interlock cell inconsistency\n" +
 "\tcell='%s', expected='%s', actual='%s'",
]

Method Summary

Methods inherited from Exception

#initialize, #message, #to_s

Constructor Details

This class inherits a constructor from InstantCache::Exception