You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/Conditionals.Core/Common/Exceptions/CustomExceptions.cs
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -131,4 +131,12 @@ public class ContextTypeAssemblyNotFoundException(string message, Exception? inn
131
131
/// </summary>
132
132
/// <param name="message">The message that describes the error.</param>
133
133
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference if no inner exception is specified.</param>
thrownewEventNotFoundException(String.Format(GlobalStrings.Event_Not_Found_Exception_Message,jsonRule.RuleEventDetails.EventTypeName),null);//could not create the event details from the information in the JsonRule
Copy file name to clipboardExpand all lines: Source/Conditionals.Core/Common/Seeds/GlobalStrings.cs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,9 @@ internal static class GlobalStrings
33
33
publicconststringContext_Type_Assembly_Not_Found_Exception_Message="The assembly for the type of data context used for the condition {0} could not be found in the assemblies for the current app domain.";
34
34
publicconststringEvent_Not_Found_Exception_Message="The event named {0} could not be found whilst ingesting the json rule";
35
35
publicconststringInvalid_System_DataType_Exception_Message="The data type for the rule named: {0} is invalid.";
36
+
37
+
publicconststringMissing_ConditionSets_Exception_Message="No condition sets were found in the rule.";
38
+
36
39
//public const string In_Complete_Rule_Conversion_Exception_Message = "A rule needs to contain at least one condition set with a condition before it can be converted";
0 commit comments