This repository has been archived on 2022-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
LinkDitch/3-Domain/src/main/java/exeptions/ElementAlreadyInSet.java

9 lines
150 B
Java
Raw Normal View History

package exeptions;
public class ElementAlreadyInSet extends RuntimeException {
public ElementAlreadyInSet(String message) {
super(message);
}
}