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

org.yamcs.alarms.CouldNotAcknowledgeAlarmException Maven / Gradle / Ivy

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

import org.yamcs.YamcsException;

/**
 * Used by AlarmServer to indicate when the acknowledge on an alarm did not work.
 */
public class CouldNotAcknowledgeAlarmException extends YamcsException {

    private static final long serialVersionUID = 1L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy