com.fasterxml.sort.IterableSorterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-merge-sort Show documentation
Show all versions of java-merge-sort Show documentation
Basic configurable disk-backed N-way merge sort
package com.fasterxml.sort;
import java.io.IOException;
import java.util.Iterator;
/**
* We need an unchecked exception to work with {@link Iterator}, and
* want a specific subtype to catch.
*/
public class IterableSorterException extends RuntimeException {
private static final long serialVersionUID = 1L;
public IterableSorterException(IOException cause) {
super(cause);
}
}