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

matlabcontrol.MatlabConnectionException Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/*
 * Code licensed under new-style BSD (see LICENSE).
 * All code up to tags/original: Copyright (c) 2013, Joshua Kaplan
 * All code after tags/original: Copyright (c) 2016, DiffPlug
 */
package matlabcontrol;

/**
 * Represents a failure to connect to MATLAB or make MATLAB available for a connection.
 * 
 * @since 2.0.0
 * 
 * @author Joshua Kaplan
 */
public class MatlabConnectionException extends Exception {
	private static final long serialVersionUID = 0xA400L;

	MatlabConnectionException(String msg) {
		super(msg);
	}

	MatlabConnectionException(String msg, Throwable cause) {
		super(msg, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy