Package co.edu.eafit.ejemplopersistencia.excepcion

Examples of co.edu.eafit.ejemplopersistencia.excepcion.SaldoInsuficienteExcepcion


        System.out.println("entra a retirar ");
      saldo = saldo - x;
      if (saldo < 0)
      { 
        saldo = saldo + x;
        throw new SaldoInsuficienteExcepcion ("Saldo Insuficiente");
      } else{
           
        addMvtoCuenta(MvtosCuenta.SALIDA, x);
      
View Full Code Here


      if (saldo < 0)
      {
         if (saldo + topeSobrejiro < 0)
        {
          saldo = saldo + x;
          throw new SaldoInsuficienteExcepcion ("Saldo Insuficiente");
        }
        }
           addMvtoCuenta(MvtosCuenta.SALIDA, x);
              
         }
View Full Code Here

TOP

Related Classes of co.edu.eafit.ejemplopersistencia.excepcion.SaldoInsuficienteExcepcion

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.