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

org.yamcs.InitException Maven / Gradle / Ivy

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

@SuppressWarnings("serial")
public class InitException extends YamcsException {

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

    public InitException(String message, Throwable t) {
        super(message, t);
    }

    public InitException(Throwable t) {
        super(t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy