Here you can find the source of printException(Exception e)
Parameter | Description |
---|---|
e | a parameter |
public static void printException(Exception e)
//package com.java2s; public class Main { /**//from w ww . j a va2s . co m * Prints out the message of the exception. * * @param e */ public static void printException(Exception e) { System.err.println(e.getLocalizedMessage()); } }