Package exception

Examples of exception.ItemBookAlreadyExists


   
    //Si un probleme, l'exception NotMember est levée, et l'exécution est interrompue
    verifieUtilisateur(pseudo, password);
   
    //Si le livre existe déja, on leve l'exception ItemBookAlreadyExists
    if(this.getBook(titre)!=null) throw new ItemBookAlreadyExists();
           
    //Ajout du livre
    listeBooks.add(new Book(genre, titre, auteur, nbPages));
 
  }
View Full Code Here

TOP

Related Classes of exception.ItemBookAlreadyExists

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.