class RSpec::Core::SuiteHookContext

Provides an execution context for before/after :suite hooks.
@private

def initialize

def initialize
  super(AnonymousExampleGroup, "", {})
end

def set_exception(exception, _context=nil)

To ensure we don't silence errors...
def set_exception(exception, _context=nil)
  raise exception
end