001// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
002//
003// SPDX-License-Identifier: Apache-2.0
004
005package sop.cli.picocli;
006
007public class Print {
008
009    public static void errln(String string) {
010        // CHECKSTYLE:OFF
011        System.err.println(string);
012        // CHECKSTYLE:ON
013    }
014
015    public static void trace(Throwable e) {
016        // CHECKSTYLE:OFF
017        e.printStackTrace();
018        // CHECKSTYLE:ON
019    }
020
021    public static void outln(String string) {
022        // CHECKSTYLE:OFF
023        System.out.println(string);
024        // CHECKSTYLE:ON
025    }
026}