Inheritance: System.Exception
Esempio n. 1
0
 public UvArgs(int error)
 {
     _error = error;
     if (_error < 0)
     {
         _exception = new UvException(error);
     }
 }
Esempio n. 2
0
 public UvArgs(int error)
 {
     _error = error;
     if (_error < 0)
         _exception = new UvException (error);
 }