This commit is contained in:
2025-04-29 17:51:52 +03:00
parent 9e95d7d514
commit 86ef6a2f43
21 changed files with 1272 additions and 0 deletions

View 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