/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/exception/FlushVersionMismatchException.java
17 строк
413 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.exception; import java.io.IOException; public class FlushVersionMismatchException extends IOException { public FlushVersionMismatchException(Throwable cause) { super(cause); } public FlushVersionMismatchException(String message) { super(message); } public FlushVersionMismatchException(String message, Throwable cause) { super(message, cause); } }