示例#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;
 }