package at.ac.tuwien.lsdc.exception;

/**
 * Exception to be thrown, if no new PMs can be started as all our PMs are
 * allready running.
 * 
 * @author jan
 * 
 */
public class OutOfPMsException extends RuntimeException {

	public OutOfPMsException(String msg) {
		super(msg);
	}
}
