TransferPathAttributeException
using System;
using System.Runtime.Serialization;
namespace Relativity.Transfer
{
[Serializable]
public class TransferPathAttributeException : Exception
{
public TransferPathAttributeException()
{
}
public TransferPathAttributeException(string message)
: base(message)
{
}
public TransferPathAttributeException(string message, Exception innerException)
: base(message, innerException)
{
}
protected TransferPathAttributeException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}