Package maissocial.exception

Examples of maissocial.exception.TipoAbastAguaJaCadastradaException


        TipoAbastAgua ta2 = this.taRep.pesquisarTipoAbastAguaPorDescricao(ta.getDescricao());
        if(ta2 == null){
            this.taRep.salvarTipoAbastAgua(ta);
        }else{
            throw new TipoAbastAguaJaCadastradaException("Tipo de Abastecimento de Água já cadastrado!");
        }

    }
View Full Code Here


        TipoAbastAgua ta2 = this.taRep.pesquisarTipoAbastAguaPorDescricao(ta.getDescricao());
        if(ta2 == null){
            this.taRep.alterarTipoAbastAgua(ta);
        }else{
            throw new TipoAbastAguaJaCadastradaException("Tipo de Abastecimendo de Água já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoAbastAguaJaCadastradaException

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.