1 Reply Latest reply on Mar 20, 2013 9:56 AM by adamw

    null pointer exception

    ganeshneelekani

      Hi All,

       

       

      I have one doubt in handling exception

       

       

      Please follow the code

       

       

      private static void loadProdpriceAttrs(StatefulKnowledgeSession workingMemory, long id)

          {

              List<ProdpriceAttribute> prodpriceAttrList = em.createQuery("FROM ProdpriceAttribute prodpriceAttribute WHERE prodpriceAttribute.productpriceid = " + id +"order by attributevalue  desc").getResultList();

              for(ProdpriceAttribute prodpriceAttribute: prodpriceAttrList)

              {

                  System.out.println("prodpriceAttribute Id "+prodpriceAttribute.getId());

                  workingMemory.insert(prodpriceAttribute);

                 

              }

          }

       

       

      I am getting null pointer exception while fetching data.....

       

      I need to ignore the exception and need to fetch the remaining data..

       

      Can any one help me to write exception handling code ,

       

       

       

      Regards

      Ganesh Neelekani

      Team Agile