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

org.yamcs.tctm.TcTmException Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.tctm;

/**
 * Generic exception to throw for problems encountered during TC or TM processing
 * 
 * @author nm
 *
 */
public class TcTmException extends Exception {
    public TcTmException() {
        super();
    }

    public TcTmException(String message) {
        super(message);
    }

    public TcTmException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy