es.prodevelop.pui9.exceptions.PuiServiceUpdateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es.prodevelop.pui9.services Show documentation
Show all versions of es.prodevelop.pui9.services Show documentation
Support for business layer (BO)
package es.prodevelop.pui9.exceptions;
public class PuiServiceUpdateException extends PuiServiceException {
private static final long serialVersionUID = 1L;
public static final Integer CODE = 812;
public PuiServiceUpdateException(PuiServiceException cause) {
super(cause, cause.getInternalCode(), cause.getMessage());
}
public PuiServiceUpdateException(AbstractPuiDaoException cause) {
super(cause);
}
public PuiServiceUpdateException(Exception cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy