![JAR search and dependency download from the Maven repository](/logo.png)
dev.dsf.fhir.dao.exception.ResourceNotFoundException Maven / Gradle / Ivy
package dev.dsf.fhir.dao.exception;
public final class ResourceNotFoundException extends Exception
{
private static final long serialVersionUID = 1L;
private final String id;
public ResourceNotFoundException(String id)
{
this.id = id;
}
public String getId()
{
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy