lib/rbbt/util/misc/exceptions.rb in rbbt-util-5.22.1 vs lib/rbbt/util/misc/exceptions.rb in rbbt-util-5.22.3
- old
+ new
@@ -1,13 +1,15 @@
class RbbtException < StandardError; end
class ParameterException < RbbtException; end
class FieldNotFoundError < RbbtException;end
-class TryAgain < RbbtException; end
class ClosedStream < RbbtException; end
class ProcessFailed < RbbtException; end
class Aborted < StandardError; end
+
+class TryAgain < StandardError; end
+class SemaphoreInterrupted < TryAgain; end
class RemoteServerError < RbbtException; end
class DependencyError < Aborted
def initialize(msg)