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

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

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