Examples of ConstraintException


Examples of org.efs.openreports.util.ConstraintException

    {
      rollbackTransaction(tx);     
     
      if (he instanceof ConstraintViolationException)
      {
        throw new ConstraintException(he.getMessage());
      }

      throw new ProviderException(he);
    }
    finally
View Full Code Here

Examples of org.infoglue.cms.exception.ConstraintException

        try
        {
          ServiceDefinition serviceDefinition = getServiceDefinitionWithId(vo.getServiceDefinitionId(), db);
        if(serviceDefinition.getName().equalsIgnoreCase("Core content service") || serviceDefinition.getName().equalsIgnoreCase("Core structure service"))
        {
          throw new ConstraintException("ServiceDefinition.deleteAction", "3200");
       
        }
        catch(ConstraintException ce)
        {
          throw ce;
View Full Code Here

Examples of org.jamesii.perfdb.ConstraintException

    for (IRuntimeConfiguration rtConfig : rtConfigs) {
      if (EqualsCheck.equals(rtConfig.getSelectionTree(), selTree)) {
        if (returnConfig == null) {
          returnConfig = rtConfig;
        } else {
          throw new ConstraintException(
              "There are multiple runtime configurations with identical selection trees!");
        }
      }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.