Package co.jirm.orm

Examples of co.jirm.orm.JirmOptimisticLockException


      }
    }
    check.state(!where.isEmpty(), "where should not be empty");
    int results = update(m, where);
    if (results < 1) {
      throw new JirmOptimisticLockException("Failed to update object: {}, where: {}",
          updateBuilderFactory.getDefinition().getObjectType(),
          where);
    }
  }
View Full Code Here

TOP

Related Classes of co.jirm.orm.JirmOptimisticLockException

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.