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

org.yamcs.commanding.InvalidCommandId Maven / Gradle / Ivy

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

import org.yamcs.protobuf.Commanding.CommandId;

@SuppressWarnings("serial")
public class InvalidCommandId extends RuntimeException {

    CommandId cmdId;

    public InvalidCommandId(String msg, CommandId cmdId) {
        super(msg);
        this.cmdId = cmdId;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy