/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/exception/EarlybirdStartupException.java
20 строк
577 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.exception; /** * Thrown by code that is executed during startup and used to communicate to caller that startup * has failed. Generally results in shutting down of the server, but check on your own if you * need to. */ public class EarlybirdStartupException extends Exception { public EarlybirdStartupException(Throwable cause) { super(cause); } public EarlybirdStartupException(String message) { super(message); } public EarlybirdStartupException(String message, Throwable cause) { super(message, cause); } }