Programmazione:Java/Exception

Da WikiSitech.
Vai alla navigazioneVai alla ricerca

<< Back to Java

Exception

Usare eccezioni checked per essere sicuro che qualcuno le intercetti

Bad Practice void function() {

  throw new RuntimeException("");

}

Best Practice void function() throws CheckedException{

  throw new CheckedException("");

}