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

org.yamcs.yarch.YarchException Maven / Gradle / Ivy

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


public class YarchException extends RuntimeException {
    public YarchException(String string) {
        super(string);
    }
    public YarchException(Throwable t) {
        super(t);
    }
    public YarchException(String msg, Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy