RelativityNotSupportedException
using System;
using System.Runtime.Serialization;
namespace Relativity.Transfer
{
[Serializable]
public class RelativityNotSupportedException : Exception
{
public RelativityNotSupportedException()
{
}
public RelativityNotSupportedException(string message)
: base(message)
{
}
public RelativityNotSupportedException(string message, Exception innerException)
: base(message, innerException)
{
}
protected RelativityNotSupportedException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
if (info == null)
throw new ArgumentNullException("info");
base.GetObjectData(info, context);
}
}
}