public PoolException(PoolExceptionType type) { _type = type; }
/// Constructs a PoolException with a message and PoolExceptionType public PoolException(string message, PoolExceptionType exceptionType) : base(message) { type = exceptionType; }