class RuboCop::Cop::Chef::Correctness::ChefApplicationFatal

Use ‘raise` to force Chef Infra Client to fail instead of using `Chef::Application.fatal`, which masks the full stack trace of the failure and makes debugging difficult.

@example

### incorrect
Chef::Application.fatal!('Something horrible happened!')

### correct
raise "Something horrible happened!"