package com.tdmconsult.ete.exceptions;
public class DocumentNotFound extends ResourceNotFoundException {
public DocumentNotFound(final String criteria) {
super("financial document", criteria);
}
public static DocumentNotFound byId(final String publicId) {
return new DocumentNotFound("publicId: " + publicId);
}
}