/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/partition/PartitionConfigLoadingException.java
12 строк
436 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.partition; /** * An exception thrown when the earlybird layout could not be loaded, or when a host cannot find * itself in the layout, and the layout has errors (which might be the reason why the host could not * find itself in the layout). */ public class PartitionConfigLoadingException extends Exception { public PartitionConfigLoadingException(String message) { super(message); } }