ExcecaoAtribuicaoInvalidaVariavelNaoDeclarada.java 533 B

123456789101112131415161718
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package exception;
  7. /**
  8. *
  9. * @author Eugenio
  10. */
  11. public class ExcecaoAtribuicaoInvalidaVariavelNaoDeclarada extends Exception {
  12. public ExcecaoAtribuicaoInvalidaVariavelNaoDeclarada(String id, int line) {
  13. super("Valor atribuido é invalido. Tentando atribuir variavel[" + id + "] que não foi declarada.Linha[" + line + "]");
  14. }
  15. }