From 41358ad4466512d658ae2dba692f97a55369c594 Mon Sep 17 00:00:00 2001 From: Adriano Serighelli Date: Wed, 19 Nov 2025 15:13:39 -0300 Subject: [PATCH] Add SoapFaultException class and integrate it into VerificarRespostaSOAP for error handling --- {Infrastructure => Application}/SoapFaultException.cs | 2 +- {Infrastructure => Application}/SoapHelper.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {Infrastructure => Application}/SoapFaultException.cs (95%) rename {Infrastructure => Application}/SoapHelper.cs (97%) diff --git a/Infrastructure/SoapFaultException.cs b/Application/SoapFaultException.cs similarity index 95% rename from Infrastructure/SoapFaultException.cs rename to Application/SoapFaultException.cs index 37135a9..13bda15 100644 --- a/Infrastructure/SoapFaultException.cs +++ b/Application/SoapFaultException.cs @@ -1,4 +1,4 @@ -namespace Infrastructure +namespace Application { public class SoapFaultException : Exception { diff --git a/Infrastructure/SoapHelper.cs b/Application/SoapHelper.cs similarity index 97% rename from Infrastructure/SoapHelper.cs rename to Application/SoapHelper.cs index b7f5929..533d433 100644 --- a/Infrastructure/SoapHelper.cs +++ b/Application/SoapHelper.cs @@ -1,6 +1,6 @@ using System.Xml.Linq; -namespace Infrastructure +namespace Application { public static class SoapHelper {