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

br.com.caelum.stella.boleto.BoletoException Maven / Gradle / Ivy

package br.com.caelum.stella.boleto;

/**
 * Define as Exceptions de um boleto
 * 
 * @author Cauê Guerra
 * 
 */
public class BoletoException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public BoletoException(String message, Exception e) {
        super(message, e);
    }

    public BoletoException(Exception e) {
        super(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy