// Token: 0x06000110 RID: 272 RVA: 0x000073E4 File Offset: 0x000055E4
        private bool HandleKnownException(Exception e)
        {
            bool result = false;

            if (AmExceptionHelper.CheckExceptionCode(e, 1060U))
            {
                result = true;
                this.m_shutdownEvent.WaitOne(30000, false);
            }
            else if (AmExceptionHelper.CheckExceptionCode(e, 1115U))
            {
                throw new AmServiceMonitorSystemShutdownException(this.ServiceName);
            }
            return(result);
        }