diff --git a/Constructor5.Base/Startup/StartupEvents.cs b/Constructor5.Base/Startup/StartupEvents.cs index 2d25d1a1..d94a8e02 100644 --- a/Constructor5.Base/Startup/StartupEvents.cs +++ b/Constructor5.Base/Startup/StartupEvents.cs @@ -14,7 +14,14 @@ public static void TypeActions() { foreach (var attribute in type.GetCustomAttributes()) { - attribute.Invoke(type); + try + { + attribute.Invoke(type); + } + catch(System.Exception ee) + { + Console.WriteLine(ee.Message); + } } } }