Exemple #1
0
 public void HandleBusinessException(BusinessExceptionDto exceptionDto)
 {
     throw new BusinessException(exceptionDto.ExceptionType, exceptionDto.Message);
 }
Exemple #2
0
 public void HandleBusinessException(BusinessExceptionDto exceptionDto)
 {
     new ExceptionNotifierViewModel(exceptionDto);
     throw new SuspendProcessException();
 }
Exemple #3
0
 public ExceptionNotifierViewModel(BusinessExceptionDto e)
     : this(e.Message, e.StackTrace, e.ExceptionType)
 {
 }
 public void HandleBusinessException(BusinessExceptionDto exceptionDto)
 {
     Viewer.ShowMessage(exceptionDto.Message);
 }