Package org.camunda.bpm.engine

Examples of org.camunda.bpm.engine.ProcessEngineException


  public Set<Object> keySet() {
    return Collections.emptySet();
  }

  public void clear() {
    throw new ProcessEngineException("can't clear configuration beans");
  }
View Full Code Here


  public void clear() {
    throw new ProcessEngineException("can't clear configuration beans");
  }

  public boolean containsValue(Object value) {
    throw new ProcessEngineException("can't search values in configuration beans");
  }
View Full Code Here

  public boolean containsValue(Object value) {
    throw new ProcessEngineException("can't search values in configuration beans");
  }

  public Set<java.util.Map.Entry<Object, Object>> entrySet() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  public Set<java.util.Map.Entry<Object, Object>> entrySet() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }

  public boolean isEmpty() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  public boolean isEmpty() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }

  public Object put(Object key, Object value) {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  public Object put(Object key, Object value) {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }

  public void putAll(Map< ? extends Object, ? extends Object> m) {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  public void putAll(Map< ? extends Object, ? extends Object> m) {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }

  public Object remove(Object key) {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  public Object remove(Object key) {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }

  public int size() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  public int size() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }

  public Collection<Object> values() {
    throw new ProcessEngineException("unsupported operation on configuration beans");
  }
View Full Code Here

  protected void initTransactionManager() {
    if(transactionManager == null){

      if(transactionManagerJndiName == null || transactionManagerJndiName.length() == 0) {
        throw new ProcessEngineException("Property 'transactionManager' is null and 'transactionManagerJndiName' is not set. \n " +
            "Please set either the 'transactionManager' property or the 'transactionManagerJndiName' property.");
      }

      try {
        transactionManager = (TransactionManager) new InitialContext().lookup(transactionManagerJndiName);

      } catch(NamingException e) {
        throw new ProcessEngineException("Cannot lookup Jta TransactionManager in JNDI using name '"+transactionManagerJndiName+"'.", e);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.ProcessEngineException

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.