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