Pattern: Missing use of StandardError
over Exception
Issue: -
This rule checks for raise
or fail
statements which are
raising Exception
class.
# bad
raise Exception, 'Error message here'
# good
raise StandardError, 'Error message here'
Pattern: Missing use of StandardError
over Exception
Issue: -
This rule checks for raise
or fail
statements which are
raising Exception
class.
# bad
raise Exception, 'Error message here'
# good
raise StandardError, 'Error message here'