ExportBaseException
The exception thrown when a failure occurs performing an export operation.
using System;
using System.Runtime.Serialization;
namespace kCura.WinEDDS.Exceptions
{
[Serializable]
public abstract class ExportBaseException : Exception
{
protected ExportBaseException(string message, Exception innerException)
: base(message, innerException)
{
}
protected ExportBaseException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}