Package maissocial.exception

Examples of maissocial.exception.TipoDrogaJaCadastradaException


        TipoDroga td2 = this.tdRep.pesquisarTipoDrogaPorDescricao(td.getDescricao());
        if(td2 == null){
            this.tdRep.salvarTipoDroga(td);
        }else{
            throw new TipoDrogaJaCadastradaException("Tipo de Droga já cadastrado!");
        }

    }
View Full Code Here


        TipoDroga td2 = this.tdRep.pesquisarTipoDrogaPorDescricao(td.getDescricao());
        if(td2 == null){
            this.tdRep.alterarTipoDroga(td);
        }else{
            throw new TipoDrogaJaCadastradaException("Tipo de Droga já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoDrogaJaCadastradaException

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.