ExcecaoConstantNaoDeclarada.java 565 B

12345678910111213141516171819202122
  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 ExcecaoConstantNaoDeclarada extends Exception {
  12. public ExcecaoConstantNaoDeclarada(String nome, int linha) {
  13. super("Constante [" + nome + "] não declada.Linha[" + linha + "]");
  14. }
  15. public ExcecaoConstantNaoDeclarada(String nome) {
  16. super("Constante [" + nome + "] não declada");
  17. }
  18. }