Package exceptions.metier

Examples of exceptions.metier.PlaceInexistanteException


   * @throws PlaceInexistanteException Au cas ou la Place n'existe pas dans cette zone
   */
  public void removePlace(Zone z, Fauteuil f)
    throws PlaceInexistanteException{
    if( !z.removePlace(f.getRangee(), f.getNumero()) )
      throw new PlaceInexistanteException();
  }
View Full Code Here

TOP

Related Classes of exceptions.metier.PlaceInexistanteException

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.