Package maissocial.exception

Examples of maissocial.exception.UfJaCadastradaException


        Uf uf2 = this.ufRep.pesquisarUfPorNome(uf.getNome());
        if(uf2 == null){
            this.ufRep.salvarUf(uf);
        }else{
            throw new UfJaCadastradaException("UF já cadastrado!");
        }

    }
View Full Code Here


        Uf uf2 = this.ufRep.pesquisarUfPorNome(uf.getNome());
        if(uf2 == null){
            this.ufRep.alterarUf(uf);
        }else{
            throw new UfJaCadastradaException("UF já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.UfJaCadastradaException

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.