Beispiel #1
0
        // Token: 0x06000585 RID: 1413 RVA: 0x0002B0C4 File Offset: 0x000292C4
        private static ElcEwsException WrapElcEwsException(ElcEwsErrorType errorType, Exception exception)
        {
            ElcEwsException ex = exception as ElcEwsException;

            if (ex == null || ex.ErrorType != errorType)
            {
                return(new ElcEwsException(errorType, exception));
            }
            return(ex);
        }
 // Token: 0x060005A6 RID: 1446 RVA: 0x0002B672 File Offset: 0x00029872
 public ElcEwsException(ElcEwsErrorType errorType, Exception innerException) : base(string.Empty, innerException)
 {
     this.ErrorType = errorType;
 }
 // Token: 0x060005A5 RID: 1445 RVA: 0x0002B65C File Offset: 0x0002985C
 public ElcEwsException(ElcEwsErrorType errorType, string message)
 {
     this.errorMessage = message;
     this.ErrorType    = errorType;
 }
 // Token: 0x060005A4 RID: 1444 RVA: 0x0002B64D File Offset: 0x0002984D
 public ElcEwsException(ElcEwsErrorType errorType)
 {
     this.ErrorType = errorType;
 }