class RuboCop::Cop::Lint::NoUntypedRaise

@example

# bad
raise 'foo'

# good
raise ArgumentError, 'foo'