class Macros4Cuke::NoFormattingEventForFormatter
Raised when the list of formatting events provided by a macro-step formatter is nil or empty.
Public Class Methods
new(aFormatter)
click to toggle source
Calls superclass method
# File lib/macros4cuke/exceptions.rb, line 125 def initialize(aFormatter) msg1 = "Formatter #{aFormatter.class}" msg2 = 'does not support any formatting event.' super(msg1 + ' ' + msg2) end