package cz.vsb.crm.exception;
public class ResourceNotFoundException extends RuntimeException {
public ResourceNotFoundException(String entity, Object id) {
super(entity + " with id " + id + " was not found");
}
public ResourceNotFoundException(String message) {
super(message);
}
}