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

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

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

public class CommandEncodingException extends XtceProcessingException {
    private static final long serialVersionUID = 1L;
    TcProcessingContext context;

    public CommandEncodingException(String msg) {
        super(msg);
    }

    public CommandEncodingException(TcProcessingContext context, String msg) {
        super(msg);
        this.context = context;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy