lib/alephant/broker/errors/invalid_cache_key.rb in alephant-broker-0.0.2 vs lib/alephant/broker/errors/invalid_cache_key.rb in alephant-broker-0.0.3
- old
+ new
@@ -1,7 +1,11 @@
module Alephant
module Broker
class InvalidCacheKey < Exception
+ def initialize
+ super("Cache key not found based on component_id and options combination")
+ end
+
end
end
end