
br.com.jhonsapp.bootstrap.exception.ServiceException Maven / Gradle / Ivy
package br.com.jhonsapp.bootstrap.exception;
/**
* An representation of Exception.
*
* @author Jhonathan Camacho.
*/
public class ServiceException extends RuntimeException {
/**
* Generated serial version id created at 20 October 2017.
*/
private static final long serialVersionUID = 8233154685562833694L;
private String messageSource;
public ServiceException(String messageSource) {
super(messageSource);
this.messageSource = messageSource;
}
public String getMessageSource() {
return messageSource;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy