Package util

Examples of util.MyClassException


  public void incluir(UnidadeMedida unidade) throws MyClassException {
    try {
      manager.persist(unidade);
    } catch (Exception e) {
      MyClassException m = new MyClassException(
          "Problemas ao gerar Unidade de Medida.");
      throw m;
    }
  }
View Full Code Here


    Query query = null;
    System.out.println("------------------------ PASSO 3.1");
    query = manager.createQuery("SELECT p FROM UnidadeMedida as p");
    List<UnidadeMedida> listaUnidade = query.getResultList();
    if (listaUnidade.size() == 0) {
      throw new MyClassException("Nenhuma unidade cadastrada.");
    }
    System.out.println("------------------------ PASSO 4");
    return listaUnidade;
  }
View Full Code Here

  }

  public UnidadeMedida obter(int id) throws MyClassException {
    UnidadeMedida unidadeMedida = manager.find(UnidadeMedida.class, id);
    if (unidadeMedida == null) {
      throw new MyClassException("Unidade n�o cadastrada.");
    }
    return unidadeMedida;
  }
View Full Code Here

      unidade = manager.merge(unidade);
     
        manager.getTransaction().commit();
        manager.refresh(unidade);       
    } catch (Exception e) {
      MyClassException m = new MyClassException(
          "Problemas ao alterar Unidade de Medida.");
      e.printStackTrace();
      throw m;
    }
  }
View Full Code Here

TOP

Related Classes of util.MyClassException

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.