OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [classpath/] [external/] [jsr166/] [java/] [util/] [concurrent/] [BrokenBarrierException.java] - Blame information for rev 768

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 768 jeremybenn
/*
2
 * Written by Doug Lea with assistance from members of JCP JSR-166
3
 * Expert Group and released to the public domain, as explained at
4
 * http://creativecommons.org/licenses/publicdomain
5
 */
6
 
7
package java.util.concurrent;
8
 
9
/**
10
 * Exception thrown when a thread tries to wait upon a barrier that is
11
 * in a broken state, or which enters the broken state while the thread
12
 * is waiting.
13
 *
14
 * @see CyclicBarrier
15
 *
16
 * @since 1.5
17
 * @author Doug Lea
18
 *
19
 */
20
public class BrokenBarrierException extends Exception {
21
    private static final long serialVersionUID = 7117394618823254244L;
22
 
23
    /**
24
     * Constructs a <tt>BrokenBarrierException</tt> with no specified detail
25
     * message.
26
     */
27
    public BrokenBarrierException() {}
28
 
29
    /**
30
     * Constructs a <tt>BrokenBarrierException</tt> with the specified
31
     * detail message.
32
     *
33
     * @param message the detail message
34
     */
35
    public BrokenBarrierException(String message) {
36
        super(message);
37
    }
38
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.