lib/ruby_skynet/exceptions.rb in ruby_skynet-0.4.0.pre2 vs lib/ruby_skynet/exceptions.rb in ruby_skynet-0.4.0
- old
+ new
@@ -1,7 +1,8 @@
module RubySkynet
class Exception < ::RuntimeError; end
class ProtocolError < Exception; end
class ServiceException < Exception; end
+ class InvalidServiceException < ServiceException; end
class SkynetException < Exception; end
class ServiceUnavailable < SkynetException; end
end