An
exception
of this type is thrown when a thread calls
CyclicBarrier.await( ) on a broken barrier, or
when the barrier is broken while a thread is waiting. A
CyclicBarrier enters a broken state when one of
the waiting threads is interrupted or times out.

public class BrokenBarrierException extends Exception {
// Public Constructors
public BrokenBarrierException( );
public BrokenBarrierException(String message);
}