br.com.caelum.stella.boleto.exception.BoletoException Maven / Gradle / Ivy
package br.com.caelum.stella.boleto.exception;
/**
* 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);
}
public BoletoException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy