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

org.yamcs.activities.ManualFailureException Maven / Gradle / Ivy

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

/**
 * Exception class carrying the failure reason (text provided by the user) of why a manual activity completed
 * exceptionally.
 * 

* The stacktrace is to be discarded. */ @SuppressWarnings("serial") public class ManualFailureException extends Exception { public ManualFailureException(String failureReason) { super(failureReason); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy