private static void showFatalError()

in src/main/java/org/apache/maven/doxia/cli/ConverterCli.java [219:228]


    private static void showFatalError(String message, Exception e, boolean show) {
        System.err.println("FATAL ERROR: " + message);
        if (show) {
            System.err.println("Error stacktrace:");

            e.printStackTrace();
        } else {
            System.err.println("For more information, run with the -e flag");
        }
    }