Abhinaw TripathiJun 21, 20161 min readRe-throwing an Exception Example JavaWhat is the difference between throws and throw? Ans: throws clause is used when the programmer does not want to handle the exception and...
Abhinaw TripathiJun 20, 20162 min readthrows Clause Example Javathrows Clause Even if the programmer is not handling run-time exceptions,the java compiler will not give any error related to run-time...
Abhinaw TripathiJun 20, 20162 min readException Handling JavaException Handling When there is an exception ,the user data may be corrupted.This should be tackled by the programmers be carefully...