Whenever dealing with Exceptions thrown by the config parser, catching
this type will allow to optionally format with colors:
`
try
{
auto conf = parseConfigFile!Config(cmdln);
// ...
}
catch (ConfigException exc)
{
writeln("Parsing the config file failed:");
writelfln(isOutputATTY() ? "%S" : "%s", exc);
}
`