ec.gob.senescyt.sniese.commons.exceptions.MensajesErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sniese-commons Show documentation
Show all versions of sniese-commons Show documentation
Librería que contiene clases de uso comun para sniese hechos en dropwizard
package ec.gob.senescyt.sniese.commons.exceptions;
import ec.gob.senescyt.sniese.commons.core.Errores;
public class MensajesErrorException extends RuntimeException {
private Errores errores;
public MensajesErrorException(String mensaje) {
super(mensaje);
}
public MensajesErrorException(Errores errores) {
this.errores = errores;
}
public Errores getErrores() {
return errores;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy