assignment

This commit is contained in:
2025-04-25 19:51:03 +03:00
parent f0b5074ac7
commit 9e95d7d514
8 changed files with 612 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
A class of runtime exceptions thrown when an attempt is made to access
or remove the front of a queue
@author Hyunryung Kim
*/
public class EmptyQueueException extends RuntimeException
{
public EmptyQueueException()
{
this(null);
} // end default constructor
public EmptyQueueException(String message)
{
super(message);
} // end constructor
} // end EmptyQueueException