pschelpdesk/Vendor/Prise.ReverseProxy/ReverseProxyException.cs
2024-11-04 20:45:34 +01:00

13 lines
540 B
C#

namespace Prise.Proxy
{
[System.Serializable]
public class ReverseProxyException : System.Exception
{
public ReverseProxyException() { }
public ReverseProxyException(string message) : base(message) { }
public ReverseProxyException(string message, System.Exception inner) : base(message, inner) { }
protected ReverseProxyException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}
}