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

com.github.jeuxjeux20.relativesorting.DuplicateIdentifiersException Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package com.github.jeuxjeux20.relativesorting;

/**
 * Thrown when multiple elements have the same identifier.
 */
public class DuplicateIdentifiersException extends RuntimeException {
    public DuplicateIdentifiersException() {
    }

    public DuplicateIdentifiersException(String message) {
        super(message);
    }

    public DuplicateIdentifiersException(String message, Throwable cause) {
        super(message, cause);
    }

    public DuplicateIdentifiersException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy