Sha256: 1210108a1fb3ba0fe7e335fc6e959b554ad0a65509c6759323afa0c87cab3a44
Contents?: true
Size: 1023 Bytes
Versions: 115
Compression:
Stored size: 1023 Bytes
Contents
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 < RbbtException; end class RemoteServerError < RbbtException; end class DependencyError < Aborted def initialize(msg) if defined? Step and Step === msg step = msg workflow = step.path.split("/")[-3] new_msg = [workflow, step.short_path, step.messages.last] * " - " new_msg = [step.path, step.messages.last] * ": " super(new_msg) else super(msg) end end end class KeepLocked < Exception attr_accessor :payload def initialize(payload) @payload = payload end end class KeepBar < Exception attr_accessor :payload def initialize(payload) @payload = payload end end class StopInsist < Exception attr_accessor :exception def initialize(exception) @exception = exception end end
Version data entries
115 entries across 115 versions & 1 rubygems