org.jpac.WrongUseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elbfisch.core Show documentation
Show all versions of elbfisch.core Show documentation
Open-source runtime system for component-based implementation of automation solutions with Java
The newest version!
/**
* PROJECT : ??>
* MODULE : ??>.java
* VERSION : $Revision$
* DATE : $Date$
* PURPOSE : ??>
* AUTHOR : Bernd Schuster, MSK Gesellschaft fuer Automatisierung mbH, Schenefeld
* REMARKS : -
* CHANGES : CH#n
* LOG : $Log$
*/
package org.jpac;
import org.jpac.ProcessException;
/**
*
* @author berndschuster
*/
public class WrongUseException extends ProcessException{
public WrongUseException(String message){
super(message);
}
}