Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
/**
* A non-transient Druid metadata exception thrown when trying to insert a
* duplicate entry in the metadata.
*
* @deprecated Usages of this exception will be replaced by the new
* {@link org.apache.druid.error.DruidException} in a future release.
*/
@Deprecated
public class EntryExistsException extends DruidException
{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@

/**
* Exception thrown by {@link SegmentsMetadataManager} when a segment id is unknown.
*
* @deprecated Usages of this exception will be replaced by the new
* {@link org.apache.druid.error.DruidException} in a future release.
*/
@Deprecated
public class UnknownSegmentIdsException extends Exception
{
private final Collection<String> unknownSegmentIds;
Expand Down