All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ec.gob.senescyt.sniese.commons.exceptions.MensajesErrorException Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
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