...
This parameter configures one or more exit codes which will not be treated as errors. Multiple exit codes can be defined comma seperated separated or using ranges. Examples: 255 2,3,4,100 4,50-60,210-220
...
ls _unknown_folder_; exit 5;
This commmand command has a stderr = ls: _unknown_folder_: No such file or directory
and the exit code 5.
...