Пример #1
0
 public SSOException(ExceptionCodeType exceptionCode, string detail)
 {
     this.exceptionCode = exceptionCode;
     this.message       = exceptionCode.ToString();
     if (!String.IsNullOrEmpty(detail))
     {
         this.message += " | " + detail;
     }
 }
Пример #2
0
 public SSOException(ExceptionCodeType exceptionCode)
 {
     this.exceptionCode = exceptionCode;
     this.message       = exceptionCode.ToString();
 }