class Console::Output::Failure
A wrapper for outputting failure messages, which can include exceptions.
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/failure.rb, line 14 def initialize(output, **options) super(output, **options) end
Create a new failure output wrapper.
Calls superclass method
Public Instance Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/console-1.30.2/lib/console/output/failure.rb, line 25 def call(subject = nil, *arguments, exception: nil, **options, &block) if exception.nil? last = arguments.last if last.is_a?(Exception) options[:event] = Event::Failure.for(last) end elsif exception.is_a?(Exception) options[:event] = Event::Failure.for(exception) else # We don't know what this is, so we just pass it through: options[:exception] = exception end super(subject, *arguments, **options, &block) end
The exception must be either the last argument or passed as an option.
@parameter subject [String] The subject of the message. @parameter arguments [Array] The arguments to output. @parameter exception [Exception] The exception to output. @parameter options [Hash] Additional options to pass to the output. @parameter block [Proc] An optional block to pass to the output.
Calls superclass method