/
NikolayIvkin
/
TheAlgorithms
Обзор
Документация
Войти
/
NikolayIvkin
/
TheAlgorithms
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/thealgorithms/datastructures/heaps/EmptyHeapException.java
17 строк
424 B
Piotr Idzik
style: include `LEST_LOST_EXCEPTION_STACK_TRACE` (#5150)
09 май 2024, 18:15
Не верифицирован
09 май 2024, 18:15
7bff82f
Код
Авторство
О чём код?
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); } public EmptyHeapException(String message, Throwable cause) { super(message, cause); } }