aboutsummaryrefslogtreecommitdiffstats
path: root/jrt/src/com/yahoo/jrt/EndOfQueueException.java
blob: 3c02df5fea24fb481ed96ba6ee8311cf5474aa74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jrt;


/**
 * Checked exception thrown when someone tries to dequeue an object
 * from a closed and empty {@link ThreadQueue}.
 **/
class EndOfQueueException extends Exception {

    private static final long serialVersionUID = 1L;

    /**
     * Create a EndOfQueueException.
     **/
    EndOfQueueException() {
        super();
    }
}