Remove space from Data Structures package name

This commit is contained in:
khalil2535
2018-04-14 06:45:48 +03:00
parent 520ee69e34
commit 82ef795675
41 changed files with 30540 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/**
*
*/
package heaps;
/**
* @author Nicolas Renard
* Exception to be thrown if the getElement method is used on an empty heap.
*
*/
@SuppressWarnings("serial")
public class EmptyHeapException extends Exception {
public EmptyHeapException(String message) {
super(message);
}
}