All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.metacsp.throwables.NoFocusDefinedException Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package org.metacsp.throwables;

import java.util.Arrays;

import org.metacsp.framework.Variable;

public class NoFocusDefinedException extends RuntimeException {
	
	private static final long serialVersionUID = -720305819659302093L;

	public NoFocusDefinedException(Variable ... vars) {
		super(Arrays.toString(vars));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy