ec.gob.senescyt.sniese.commons.exceptions.ReporteException 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;
public class ReporteException extends RuntimeException {
public ReporteException(String message, Throwable origen) {
super(message,origen);
}
public ReporteException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy