Programmazione:Java/Exception

Da WikiSitech.
Versione del 14 apr 2008 alle 10:31 di Rimondini (discussione | contributi)
(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)
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("");

}