Till now we have seen why we need Exceptions and how to manage code that could throw Exceptions. We still have not learned how to throw our own Exceptions. Let us first understand the code below. 01 public class DocToPdfConverter { 02 public void convert ( String src, String des ) { 03 Document doc = readDoc ( src ) ; 04 writePdf ( doc, des ) ; 05 } 06 07 private Document readDoc ( String srcPath ) { 08 //read the source file and verify format 09 //if format is incorrect then throw an Exception 10 } 11 12 private void writePdf ( Document doc, String des ) { 13 //convert the document into pdf 14 } 15 } Java2html 01 public class DocToPdfConverter { 02 public void convert ( String src, String des ) { 03 Document doc = nul...