Exemple #1
0
        public void UploadException(DAL.ExceptionDetails exception)
        {
            DAL.User user = this.GetAuthenticatedUser();

            if (user == null)
            {
                throw new Exception("User not authenticated");
            }

            exception.Save(user);
        }