What is the difference between throw and throws
Utilisateur anonyme
throw can handle one specific exception and throw the exception if catched, throws decares that an exception might be thrown by this method and this need to be handled by whatever called the method that had throws implemented.