using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreLibrary { public class CodeTailleInvalideException : Exception { public CodeTailleInvalideException() : base("La taille du tableau de code est inférieure ou égale à 0") { } } }