com.github.uniliva.commonsutils.exception.ValidacaoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-commons-utils Show documentation
Show all versions of lib-commons-utils Show documentation
Biblioteca de métodos utilitários
The newest version!
package com.github.uniliva.commonsutils.exception;
public class ValidacaoException extends BaseException {
private static final long serialVersionUID = 1L;
public ValidacaoException(final String mensagem, final Object detalhe) {
super(mensagem, detalhe);
}
public ValidacaoException(final String message) {
super(message);
}
}