-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmptyQueueException.java
More file actions
28 lines (25 loc) · 929 Bytes
/
Copy pathEmptyQueueException.java
File metadata and controls
28 lines (25 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
*
* This exception is thrown by Queue class methods to indicate an empty queue.
*
* @author Yasser EL-Manzalawy <ymelmanz@yahoo.com>
*
* This software is provided as is, without representation as to its
* fitness for any purpose, and without warranty of any kind, either
* express or implied, including without limitation the implied
* warranties of merchantability and fitness for a particular purpose.
* The author shall not be liable for any damages, including special,
* indirect,incidental, or consequential damages, with respect to any claim
* arising out of or in connection with the use of the software, even
* if they have been or are hereafter advised of the possibility of
* such damages.
*
*/
public class EmptyQueueException extends RuntimeException
{
/**
*
*/
private static final long serialVersionUID = 1L;
public EmptyQueueException() { }
}