public IntacctServiceException(IIntacctServiceResponse response)
        {
            if (response == null)
            {
                throw new ArgumentNullException(nameof(response));
            }

            Response = response;
        }
		public IntacctServiceException(IIntacctServiceResponse response)
		{
			if (response == null) throw new ArgumentNullException(nameof(response));

			Response = response;
		}