Пример #1
0
 public static BuilderException AsException(this BuilderError error)
 {
     return(new BuilderException(error));
 }
Пример #2
0
 public BuilderException(BuilderError error)
     : base(error.Message)
 {
     ErrorId = error.ErrorId;
     Title   = error.Title;
 }