using System;
namespace grof.util{
/// <summary>
/// <c>BlockingQueueStoppedException</c> objects are thrown by
/// class <c>BlockingQueueImpl</c> when queue was stopped and user
/// trys to queue or dequeue further elements.
/// </summary>
public class BlockingQueueStoppedException : Exception
{
public BlockingQueueStoppedException( string message) : base( message )
{
}
}
}
|