package musichub.util; /** * Class offering a log writing method. * * @author Aimeric ADJUTOR * @version 1.0 */ public final class LogWriter { /** * Method that just throws an AssertionError if the class is called * * @throws AssertionError you can't instantiate this class * @author Aimeric ADJUTOR */ public LogWriter() { throw new AssertionError("You just can't instantiate this class."); } public static void write(String msg) { } }