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

matlabcontrol.link.UnsupportedReturnException 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.link;

/**
 * Thrown if a MATLAB type cannot be returned from MATLAB to Java because it is not supported.
 *
 * @since 4.2.0
 * @author Joshua Kaplan
 */
public class UnsupportedReturnException extends RuntimeException {
	private static final long serialVersionUID = 0xF500L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy