26 lines
566 B
C#
26 lines
566 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Prise.Proxy
|
|
{
|
|
[Serializable]
|
|
public class PriseProxyException : Exception
|
|
{
|
|
public PriseProxyException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public PriseProxyException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
public PriseProxyException()
|
|
{
|
|
}
|
|
|
|
protected PriseProxyException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|