Here you can find the source of printError(String msg)
Parameter | Description |
---|---|
msg | Message to be printed |
public static void printError(String msg)
//package com.java2s; public class Main { /** Prints an error message to stdout * @param msg Message to be printed/* ww w . j av a 2s. c om*/ */ public static void printError(String msg) { System.out.println("Error! " + msg); } }