FacilityException
Base exception to be used by facilities.
using Castle.Core.Internal;
using System;
using System.Runtime.Serialization;
namespace Castle.MicroKernel.Facilities
{
[Serializable]
public class FacilityException : Exception
{
public FacilityException(string message)
: base(message)
{
this.SetUp();
}
public FacilityException(string message, Exception innerException)
: base(message, innerException)
{
this.SetUp();
}
public FacilityException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
this.SetUp();
}
}
}