Package be.steformations.javabc.pendu

Examples of be.steformations.javabc.pendu.NonAZException


  @Override
  public void verifieLettre(char l) throws LettreDejaEntreeException,
      NonAZException {
    // entre a et z?
    if (l < 'a' || l > 'z') {
      throw new NonAZException(String.format(
          "La lettre %s n'est pas entre a et z", l));
    }
    // déjà entrée?
    boolean dejaEntree = this.mauvaisesLettres.indexOf(l) > -1;
    if (dejaEntree) {
View Full Code Here

TOP

Related Classes of be.steformations.javabc.pendu.NonAZException

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.