Package maissocial.exception

Examples of maissocial.exception.TipoDestLixoJaCadastradoException


        TipoDestLixo dl2 = this.dlRep.pesquisarTipoDestLixoPorDescricao(dl.getDescricao());
        if(dl2 == null){
            this.dlRep.salvarTipoDestLixo(dl);
        }else{
            throw new TipoDestLixoJaCadastradoException("Destino do Lixo já cadastrado!");
        }

    }
View Full Code Here


        TipoDestLixo dl2 = this.dlRep.pesquisarTipoDestLixoPorDescricao(dl.getDescricao());
        if(dl2 == null){
            this.dlRep.alterarTipoDestLixo(dl);
        }else{
            throw new TipoDestLixoJaCadastradoException("Destino do Lixo já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoDestLixoJaCadastradoException

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.