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

org.yamcs.parameter.NoProviderException Maven / Gradle / Ivy

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

public class NoProviderException extends RuntimeException {

    public NoProviderException() {
	super();
    }

    public NoProviderException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
	super(message, cause, enableSuppression, writableStackTrace);
    }

    public NoProviderException(String message, Throwable cause) {
	super(message, cause);
    }

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

    public NoProviderException(Throwable cause) {
	super(cause);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy