com.github.jeuxjeux20.relativesorting.DuplicateIdentifiersException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of relative-sorting Show documentation
Show all versions of relative-sorting Show documentation
Sort elements using relative constraints.
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);
}
}