/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package fr.udl.acl.conteneur; /** * Erreur de conteneur * @author urso */ class ErreurConteneur extends Exception { public ErreurConteneur(String string) { super(string); } }