/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package heappriorityqueue; /** * * @author kvaradar */ public class EmptyPriorityQueueException extends RuntimeException { public EmptyPriorityQueueException(String err) { super(err); } }