Пример #1
0
 public ExceptionFacade(string message = null, System.Exception innerException = null) : base(message, innerException)
 {
     this.exceptionDescriptor = new CommonExceptionDescriptor(message);
 }
Пример #2
0
 public ExceptionFacade(ExceptionDescriptor exceptionDescriptor, System.Exception innerException = null) : base(null, innerException)
 {
     this.exceptionDescriptor = exceptionDescriptor;
 }