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/LinkAlreadyExists.java
qvalentin e634fbd1aa
All checks were successful
continuous-integration/drone/push Build is passing
Refactor Category and Link Repository to use generic the persistence adapter
2022-04-22 10:31:59 +02:00

9 lines
146 B
Java

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