This repository has been archived on 2022-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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

8 lines
146 B
Java

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