org.yamcs.mdb.XtceProcessingException Maven / Gradle / Ivy
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