Skip to content

Instantly share code, notes, and snippets.

@samueltcsantos
Created February 4, 2015 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueltcsantos/e392c6b6e4d02cfe1e46 to your computer and use it in GitHub Desktop.
Save samueltcsantos/e392c6b6e4d02cfe1e46 to your computer and use it in GitHub Desktop.
Deque Underflow Exception
package adt.deque;
/**
* When the Deque is Empty.
*
* @author Samuel T. C. Santos
* @version 1.0
*/
@SuppressWarnings("serial")
public class DequeUnderflowException extends Exception {
public DequeUnderflowException(){
super("Deque is Empty!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment