Package org.salamanca.commands

Examples of org.salamanca.commands.MessageException


     * execute
     */
    public void execute() throws MessageException {

        if (descuentoPorcentual.getSetPersona().size() > 0) {
            throw new MessageException(
                    "Imposible eliminar, el descuento tiene personas asociadas");
        }

        PersistenceManager pm = BrokerServer.instance().getPMF().
                                getPersistenceManager();
View Full Code Here


            Calendar calUtil = Calendar.getInstance();
            calUtil.setTime(vale.getFechaUtilizacion());

            if (calYa.get(Calendar.DAY_OF_YEAR) !=
                calUtil.get(Calendar.DAY_OF_YEAR)) {
                throw new MessageException(
                        "Los vales solo se pueden deshacer el mismo dia que fueron utilizados");
            }

        }
View Full Code Here

TOP

Related Classes of org.salamanca.commands.MessageException

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.