You are on page 1of 1

package excecao; public class SenhaFracaException extends Exception { /** * */ private static final long serialVersionUID = 1L; private

String trecho; public SenhaFracaException(String trecho) { this.trecho = trecho; } public String getTrecho() { return trecho; } public void setTrecho(String trecho) { this.trecho = trecho; } }

You might also like