
br.com.jhonsapp.bootstrap.document.service.exception.DocumentServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bootstrap-document Show documentation
Show all versions of bootstrap-document Show documentation
A complete architecture for creating and managing documents.
The newest version!
package br.com.jhonsapp.bootstrap.document.service.exception;
/**
* An representation of Document exception.
*
* @author Jhonathan Camacho.
*/
public class DocumentServiceException extends RuntimeException {
/**
* Generated serial version id created at 27 October 2017.
*/
private static final long serialVersionUID = 8233154685562833694L;
private String messageSource;
public DocumentServiceException(String messageSource) {
super(messageSource);
this.messageSource = messageSource;
}
public String getMessageSource() {
return messageSource;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy