ProcessAlreadyDefinedInSyncEnvException.java 586 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
package jcircus.exceptions;

import jcircus.util.ChanUse;

/**
* ChanUseUnificationException.java
*
* @author Angela Freitas
*/
public class ProcessAlreadyDefinedInSyncEnvException extends Exception {
/**
* Creates a new instance of ProcessAlreadyDefinedInSyncEnvException
*/
public ProcessAlreadyDefinedInSyncEnvException(String processName, ChanUse oldType, ChanUse newType) {
super("Trying to define process " + processName + " with java type " + newType
+ ". Process has already been defined with type " + oldType);
}
}