[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/rtu/Java/master/DataStructures/Heaps/EmptyHeapException.java [Back]  [Original]

package 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);
    }

}

Web Proxy Viewer  |  New URL  |  Original Page