static void Main(string[] args) { StoreService storeService = new StoreService(); while (storeService.ExitProgram == false) { try { storeService.ChooseCommande(); } catch (FormatException ex) { Console.WriteLine($"**{ex.Message}**"); } catch (InvalidOperationException ex) { Console.WriteLine($"**{ex.Message}**"); } catch (Exception ex) { Console.WriteLine($"**{ex.Message}**"); } finally { Console.WriteLine(new string('_', 10)); } } }