class RBS::Collection::Config::LockfileGenerator::GemfileLockMismatchError

def initialize(expected:, actual:)

def initialize(expected:, actual:)
  @expected = expected
  @actual = actual
end

def message

def message
  <<~MESSAGE
    RBS Collection loads a different Gemfile.lock from before.
    The Gemfile.lock must be the same as that is recorded in rbs_collection.lock.yaml.
    Expected Gemfile.lock: #{@expected}
    Actual Gemfile.lock: #{@actual}
  MESSAGE
end