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

org.yamcs.mdb.XtceProcessingException Maven / Gradle / Ivy

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

/**
 * Generic RuntimeException to be used when encountering an unexpected problem in the XTCE processing
 *
 */
public class XtceProcessingException extends RuntimeException {
    public XtceProcessingException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy