ConverterException
using Castle.Core.Internal;
using System;
using System.Runtime.Serialization;
namespace Castle.MicroKernel.SubSystems.Conversion
{
[Serializable]
public class ConverterException : Exception
{
public ConverterException(string message)
: base(message)
{
this.SetUp();
}
public ConverterException(string message, Exception innerException)
: base(message, innerException)
{
this.SetUp();
}
public ConverterException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
this.SetUp();
}
}
}