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

org.yamcs.ValidationException Maven / Gradle / Ivy

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

import org.yamcs.Spec.ValidationContext;

/**
 * This exception indicates that an error has occurred while performing a validate operation.
 */
@SuppressWarnings("serial")
public class ValidationException extends YamcsException {

    private ValidationContext ctx;

    public ValidationException(ValidationContext ctx, String message) {
        super(message);
        this.ctx = ctx;
    }

    public ValidationContext getContext() {
        return ctx;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy