Ejemplo n.º 1
0
        public async Task <IActionResult> GetAllExceptions()
        {
            var exceptions = await _exceptionManager.GetAllExceptions();

            if (exceptions == null)
            {
                return(NotFound());
            }
            return(Ok(exceptions));
        }