I am going through a socket program. In it, printStackTrace is caught by the catch block. What does printStackTrace actually do?
catch(IOException ioe)
{
ioe.printStackTrace();
}
I am unaware of it purpose. What is it used for?