lib/carrot_rpc/exception.rb in carrot_rpc-0.5.1 vs lib/carrot_rpc/exception.rb in carrot_rpc-0.6.0

- old
+ new

@@ -1,5 +1,6 @@ # Various exceptions that can be invoked for CarrotRpc gem. module CarrotRpc::Exception # Exception to be raised when the client timesout waiting for a response. class RpcClientTimeout < StandardError; end + class InvalidQueueName < StandardError; end end