public SSOException(ExceptionCodeType exceptionCode, string detail) { this.exceptionCode = exceptionCode; this.message = exceptionCode.ToString(); if (!String.IsNullOrEmpty(detail)) { this.message += " | " + detail; } }
public SSOException(ExceptionCodeType exceptionCode) { this.exceptionCode = exceptionCode; this.message = exceptionCode.ToString(); }