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