Errore eccezione

di il
4 risposte

Errore eccezione

Salve ragazzi ho questo codice :
public class Test2 {
   
  void readCard (int cardNo) throws Exception {
      System.out.println("Reading Card");
  }

  void checkCard (int cardNo) throws RuntimeException {
      System.out.println("Checking Card");
  }

   public static void main (String [] args) {
       Test2 ex = new Test2();
       int cardNo = 12344;
       ex.checkCard(cardNo);
       ex.readCard(cardNo);    
   }
}
e in compilazione mi da questo errore che non ho mai visto "unreported exception Exception; must be caught or declared to be thrown ex.readCard(cardNo);"

4 Risposte

Devi accedere o registrarti per scrivere nel forum
4 risposte