Package org.openbp.server.persistence

Examples of org.openbp.server.persistence.PersistentObjectNotFoundException


          ret = findById(id, beanClass);
        }
        catch (Exception e2)
        {
          String msg = LogUtil.error(getClass(), "Persistence error.", e2);
          throw new PersistentObjectNotFoundException(msg, e2);
        }
      }
      catch (EntityNotFoundException e)
      {
        String msg = LogUtil.error(getClass(), "Persistence error.", e);
        throw new PersistentObjectNotFoundException(msg, e);
      }
      catch (Exception e)
      {
        throw createLoggedException(e);
      }
View Full Code Here


      }
      catch (UnresolvableObjectException e)
      {
        tg.doCatch();
        String msg = LogUtil.error(getClass(), "Persistence error.", e);
        throw new PersistentObjectNotFoundException(msg, e);
      }
      catch (HibernateException e)
      {
        tg.doCatch();
        throw createLoggedException(e);
View Full Code Here

      {
        tg.doCatch();

        // We assume that the object doesn't exist any more.
        String msg = LogUtil.error(getClass(), "Persistence error.", e);
        throw new PersistentObjectNotFoundException(msg, e);
      }
      finally
      {
        tg.doFinally();
      }
View Full Code Here

TOP

Related Classes of org.openbp.server.persistence.PersistentObjectNotFoundException

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.