Esempio n. 1
0
 internal void Throw(Exception ex)
 {
     if (_exceptionInterceptor == null)
     {
         throw ex;
     }
     _exceptionInterceptor.Throw(ex);
 }
Esempio n. 2
0
        internal void Throw(Exception ex)
        {
#if !NETSTANDARD1_3
            if (_exceptionInterceptor == null)
            {
                throw ex;
            }
            _exceptionInterceptor.Throw(ex);
#else
            throw ex;
#endif
        }
Esempio n. 3
0
        internal void Throw(Exception ex)
        {
#if !RT
            if (exceptionInterceptor == null)
            {
                throw ex;
            }
            exceptionInterceptor.Throw(ex);
#else
            throw ex;
#endif
        }
Esempio n. 4
0
        internal void Throw(Exception ex)
        {
#if !CF && !WINDOWS_UWP
            if (exceptionInterceptor == null)
            {
                throw ex;
            }
            exceptionInterceptor.Throw(ex);
#else
            throw ex;
#endif
        }