Skip to content

Instantly share code, notes, and snippets.

@samueltcsantos
Created February 4, 2015 16:52
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/8924de2cfdc033597c47 to your computer and use it in GitHub Desktop.
Save samueltcsantos/8924de2cfdc033597c47 to your computer and use it in GitHub Desktop.
DequeOverflowException
package adt.deque;
/**
* When the deque is full.
*
* @author Samuel T. C. Santos
* @version 1.0
*
*/
@SuppressWarnings("serial")
public class DequeOverflowException extends Exception {
public DequeOverflowException(){
super("Deque is full!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment