diff --git a/CLI/Program.cs b/CLI/Program.cs index e228368..b41a8e5 100644 --- a/CLI/Program.cs +++ b/CLI/Program.cs @@ -36,5 +36,10 @@ class Program } + static void ErrorOccured(Exception e) + { + Console.WriteLine($"The following error occured while trying to load your profile:\n{e}\nMore details:\n{e.ToString()}"); + } + } }