Package EDU.oswego.cs.dl.util.concurrent
Class BrokenBarrierException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- EDU.oswego.cs.dl.util.concurrent.BrokenBarrierException
-
- All Implemented Interfaces:
java.io.Serializable
public class BrokenBarrierException extends java.lang.RuntimeException
Thrown by Barrier upon interruption of participant threads- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description int
index
The index that barrier would have returned upon normal return;
-
Constructor Summary
Constructors Constructor Description BrokenBarrierException(int idx)
Constructs a BrokenBarrierException with given indexBrokenBarrierException(int idx, java.lang.String message)
Constructs a BrokenBarrierException with the specified index and detail message.
-
-
-
Constructor Detail
-
BrokenBarrierException
public BrokenBarrierException(int idx)
Constructs a BrokenBarrierException with given index
-
BrokenBarrierException
public BrokenBarrierException(int idx, java.lang.String message)
Constructs a BrokenBarrierException with the specified index and detail message.
-
-