org.omnifaces.persistence.exception.NonDeletableEntityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omnipersistence Show documentation
Show all versions of omnipersistence Show documentation
Utilities for JPA, JDBC and DataSources
package org.omnifaces.persistence.exception;
import org.omnifaces.persistence.model.BaseEntity;
public class NonDeletableEntityException extends BaseEntityException {
private static final long serialVersionUID = 1L;
public NonDeletableEntityException(BaseEntity> entity) {
super(entity, null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy