All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.sort.IterableSorterException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy