Package maissocial.exception

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


        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

Related Classes of maissocial.exception.TipoEEletricaJaCadastradaException

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.