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