Improved files and folders name conventions and moved lost files to Misc folder

This commit is contained in:
DESKTOP-0VAEMFL\joaom
2017-10-28 12:58:07 +01:00
parent 2128c7a15d
commit 467b917416
27 changed files with 525 additions and 525 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);
}
}