matlabcontrol.link.LinkingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matconsolectl Show documentation
Show all versions of matconsolectl Show documentation
MatConsoleCtl - control MATLAB from Java
/*
* 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.link;
/**
* Issue linking a Java method to a MATLAB function.
*
* @since 4.2.0
* @author Joshua Kaplan
*/
public class LinkingException extends RuntimeException {
private static final long serialVersionUID = 0xD500L;
LinkingException(String msg) {
super(msg);
}
LinkingException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy