Examples of TipoEEletricaJaCadastradaException


Examples of maissocial.exception.TipoEEletricaJaCadastradaException

        TipoEEletrica ee2 = this.eeRep.pesquisarTipoEEletricaPorDescricao(ee.getDescricao());
        if(ee2 == null){
            this.eeRep.salvarTipoEEletrica(ee);
        }else{
            throw new TipoEEletricaJaCadastradaException("Tipo de Energia Eletrica já cadastrada!");
        }

    }
View Full Code Here

Examples of maissocial.exception.TipoEEletricaJaCadastradaException

        TipoEEletrica ee2 = this.eeRep.pesquisarTipoEEletricaPorDescricao(ee.getDescricao());
        if(ee2 == null){
            this.eeRep.alterarTipoEEletrica(ee);
        }else{
            throw new TipoEEletricaJaCadastradaException("Tipo de Energia Eletrica já cadastrada!");
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.