Esempio n. 1
0
 public ErrorStateEventArgs(Int32 status)
 {
     if (status == 0)
     {
         this.currError = null;
     }
     else
     {
         this.currError = WrapperUtils.GetErrorMessage(status);
     }
 }
Esempio n. 2
0
 public StatusException(Int32 status) :
     base(WrapperUtils.GetErrorMessage(status))
 {
     this.status = status;
 }