lib/ruby_skynet/exceptions.rb in ruby_skynet-0.1.2 vs lib/ruby_skynet/exceptions.rb in ruby_skynet-0.2.0

- old
+ new

@@ -1,6 +1,7 @@ module RubySkynet class Exception < ::RuntimeError; end class ProtocolError < Exception; end - class SkynetException < Exception; end class ServiceException < Exception; end + class SkynetException < Exception; end + class ServiceUnavailable < SkynetException; end end