Package org.java.demo.exception

Examples of org.java.demo.exception.DataConstraintException


        entity.setId(null);
      }

      this.entityManager.persist(entity);
    } catch (ConstraintViolationException e) {
      throw new DataConstraintException(e);
    } catch (Exception e) {
      throw e;
    }
  }
View Full Code Here


      if (entity instanceof Timestampable) {
        ((Timestampable) entity).setModifiedDate(new Date());
      }
      result = this.entityManager.merge(entity);
    } catch (ConstraintViolationException e) {
      throw new DataConstraintException(e);
    } catch (Exception e) {
      throw e;
    }

    return result;
View Full Code Here

TOP

Related Classes of org.java.demo.exception.DataConstraintException

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.