lib/ruby_skynet/exceptions.rb in ruby_skynet-0.4.0 vs lib/ruby_skynet/exceptions.rb in ruby_skynet-0.5.0

- old
+ new

@@ -1,8 +1,9 @@ module RubySkynet class Exception < ::RuntimeError; end class ProtocolError < Exception; end class ServiceException < Exception; end class InvalidServiceException < ServiceException; end + class InvalidConfigurationException < ServiceException; end class SkynetException < Exception; end class ServiceUnavailable < SkynetException; end end