// Token: 0x06000B6A RID: 2922 RVA: 0x000497C4 File Offset: 0x000479C4
        public static void ThrowInnerIfMapiExceptionHandledbyAI(StoragePermanentException e)
        {
            if (e == null)
            {
                return;
            }
            MapiPermanentException ex = e.InnerException as MapiPermanentException;

            if (ex != null && MapiExceptionFilter.IsMapiPermanentExceptionHandledByAI(ex))
            {
                throw ex;
            }
        }