<<< The printStackTrace( ) - error output stream | Index | multi-catch block >>> |
How to print exception data to the standard output stream
try {
//...
}
catch( IOException ex )
{
System.out.println( ex.getMessage() + "\n" );
System.out.println( ex.toString() + "\n" );
e.printStackTrace( System.out );
return null;
}
<<< The printStackTrace( ) - error output stream | Index | multi-catch block >>> |