This commit is contained in:
2025-12-26 16:40:32 +03:00
commit 4f1be2c3db
37 changed files with 2222 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace public_valetax.Exceptions
{
public class SecureException : Exception
{
public SecureException() : base() { }
public SecureException(string message) : base(message) { }
public SecureException(string message, Exception innerException) : base(message, innerException) { }
}
}