using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CoreLibrary { public class CodeTailleTableauLesJetonsException : Exception { public CodeTailleTableauLesJetonsException() { } public CodeTailleTableauLesJetonsException(string message) : base(message) { } public CodeTailleTableauLesJetonsException(string message, Exception inner) : base(message, inner) { } } }