ReelNegatifException.java
01 package fr.isae.data;
02 
03 /**
04  <code>ReelNegatifException</code> decrit une exception qui se produit lorsque
05  * le reel lu est negatif.
06  *
07  @author <a href="mailto:garion@isae.fr">Christophe Garion</a>
08  @version 1.0
09  */
10 public class ReelNegatifException extends Exception {
11     public ReelNegatifException(String s) {
12         super(s);
13     }
14 }