test&lab
This commit is contained in:
13
DataLabs/lab5/EmptyQueueException.java
Normal file
13
DataLabs/lab5/EmptyQueueException.java
Normal file
@ -0,0 +1,13 @@
|
||||
/** A class of runtime exceptions thrown when an attempt is made
|
||||
to access or remove the front of a queue. @author Frank M. Carrano
|
||||
*/
|
||||
public class EmptyQueueException extends RuntimeException {
|
||||
public EmptyQueueException() {
|
||||
this(null);
|
||||
} // end default
|
||||
|
||||
public EmptyQueueException(String message) {
|
||||
super(message);
|
||||
} // end constructor
|
||||
|
||||
} // end EmptyQueueException
|
Reference in New Issue
Block a user