/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/exception/NotInServerSetUpdateException.java
12 строк
363 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.exception; import com.twitter.common.zookeeper.ServerSet; /** * Used when trying to leave a server set when this earlybird is already out of the server set. */ public class NotInServerSetUpdateException extends ServerSet.UpdateException { public NotInServerSetUpdateException(String message) { super(message); } }