Package maissocial.exception

Examples of maissocial.exception.TipoMeioTranspJaCadastradaException


        TipoMeioTransp mt2 = this.mtRep.pesquisarTipoMeioTranspPorDescricao(mt.getDescricao());
        if(mt2 == null){
            this.mtRep.salvarTipoMeioTransp(mt);
        }else{
            throw new TipoMeioTranspJaCadastradaException("Tipo de Transporte já cadastrado!");
        }

    }
View Full Code Here


        TipoMeioTransp mt2 = this.mtRep.pesquisarTipoMeioTranspPorDescricao(mt.getDescricao());
        if(mt2 == null){
            this.mtRep.alterarTipoMeioTransp(mt);
        }else{
            throw new TipoMeioTranspJaCadastradaException("Tipo de Transporte já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoMeioTranspJaCadastradaException

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.