./lib/errors/errors.rb in strongdm-3.5.4 vs ./lib/errors/errors.rb in strongdm-3.5.5

- old
+ new

@@ -82,6 +82,13 @@ def initialize(msg, rate_limit) @rate_limit = rate_limit super(msg, 8) end end + + # UnknownError is a generic wrapper that indicates an unknown internal error in the SDK + class UnknownError < RPCError + def initialize(msg) + super(msg, 2) + end + end end