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/4-Abstraction/src/main/java/datastructures/set/ElementAlreadyInSet.java

9 lines
159 B
Java
Raw Normal View History

2022-04-22 13:52:49 +02:00
package datastructures.set;
public class ElementAlreadyInSet extends RuntimeException {
public ElementAlreadyInSet(String message) {
super(message);
}
}