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

br.com.jhonsapp.bootstrap.user.exception.BusinessException Maven / Gradle / Ivy

package br.com.jhonsapp.bootstrap.user.exception;

/**
 * An representation of Exception.
 * 
 * @author Jhonathan Camacho.
 */
public class BusinessException extends RuntimeException {

	/**
	 * Generated serial version id created at 20 October 2017.
	 */
	private static final long serialVersionUID = 8233154685562833694L;

	private String messageSource;
	
	public BusinessException(String messageSource) {
		super(messageSource);
		this.messageSource = messageSource;
	}
	
	public String getMessageSource() {
		return messageSource;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy