13 lines
285 B
Java
13 lines
285 B
Java
package bzh.sudchat.uno.exceptions;
|
|
|
|
public class CardNotFoundException extends RuntimeException {
|
|
public CardNotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public CardNotFoundException(int id) {
|
|
super("Card with id " + id + " not found");
|
|
}
|
|
|
|
}
|