RE: What is the difference between caught exception an...
Caught exceptions are called checked exceptions. Checked exception occur at compile time.Uncaught exceptions are called unchecked exceptions. Unchecked exceptions occur at runtime. Checked exceptions must be either declare or catch the exception. Unchecked exceptions does not need to declare or catch the exception.
RE: What is the difference between caught exception and uncaught exception?
caught exception:
That mean when u declare the particular type of exception(checked and unchecked exception) u will get caught exception.
uncaught exception:
That mean when u wont diclare the particulare type of exception(like class not found exception(checked exc) arithamatic exception(un checked exc)) that time u will get some uncaught exception