class RuboCop::Cop::Naming::RescuedExceptionsVariableName

def message(node)

def message(node)
  offending_name = variable_name(node)
  preferred_name = preferred_name(offending_name)
  format(MSG, preferred: preferred_name, bad: offending_name)
end