Esempio n. 1
0
 public static void Check(bool condition, CreateManagedError createManagedException)
 {
     if (!condition)
     {
         throw new CreateManagedException(createManagedException);
     }
 }
Esempio n. 2
0
 public CreateManagedException(CreateManagedError createManagedError)
     : base($"Fail to create managed. {nameof(CreateManagedError)} : {createManagedError}")
 {
     CreateManagedError = createManagedError;
 }