The Algorithms logo
The Algorithms
Acerca deDonar

Empty Heap Exception

s
package com.thealgorithms.datastructures.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);
    }
}