Package maissocial.exception

Examples of maissocial.exception.ProfPisJaCadastradaException


        ProfPis pp2 = this.ppRep.pesquisarProfPisPorNome(pp.getNome());
        if(pp2 == null){
            this.ppRep.salvarProfPis(pp);
        }else{
            throw new ProfPisJaCadastradaException("Profifional do Pis já cadastrado!");
        }

    }
View Full Code Here


        ProfPis pp2 = this.ppRep.pesquisarProfPisPorNome(pp.getNome());
        if(pp2 == null){
            this.ppRep.alterarProfPis(pp);
        }else{
            throw new ProfPisJaCadastradaException("Profissional do Pis já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.ProfPisJaCadastradaException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.