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