FreeSWITCH.Native.freeswitchPINVOKE.SWIGPendingException.Set C# (CSharp) Method

Set() public static method

public static Set ( Exception e ) : void
e System.Exception
return void
            public static void Set(Exception e)
            {
                if (pendingException != null)
                throw new ApplicationException("FATAL: An earlier pending exception from unmanaged code was missed and thus not thrown (" + pendingException.ToString() + ")", e);
                  pendingException = e;
                  lock(typeof(freeswitchPINVOKE)) {
                numExceptionsPending++;
                  }
            }
freeswitchPINVOKE.SWIGPendingException