public class ExceptionRien extends Exception { int nbChaines; public ExceptionRien(int nombre) { nbChaines = nombre; } public String toString() { return "ExceptionRien : aucune des " + nbChaines + " chaines n'est valide"; } }