package com.tdmconsult.ete.exceptions;
public abstract class ResourceNotFoundException extends RuntimeException {
protected ResourceNotFoundException(final String domainObjectName, final String criteria) {
super(domainObjectName + " not found by " + criteria);
}
}