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

org.yamcs.UncheckedYamcsException Maven / Gradle / Ivy

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

/**
 * Allows wrapping any checked exception without overloading signatures.
 */
@SuppressWarnings("serial")
public class UncheckedYamcsException extends RuntimeException {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy