001package org.galaxyproject.gxformat2.v19_09;
002
003import org.galaxyproject.gxformat2.v19_09.utils.Savable;
004
005/**
006 * Auto-generated interface for
007 * <I>https://galaxyproject.org/gxformat2/gxformat2common#HasStepErrors</I><br>
008 */
009public interface HasStepErrors extends Savable {
010  /**
011   * Getter for property
012   * <I>https://galaxyproject.org/gxformat2/gxformat2common#HasStepErrors/errors</I><br>
013   *
014   * <BLOCKQUOTE>
015   *
016   * During Galaxy export there may be some problem validating the tool state, tool used, etc.. that
017   * will be indicated by this field. The Galaxy user should be warned of these problems before the
018   * workflow can be used in Galaxy.
019   *
020   * <p>This field should not be used in human written Galaxy workflow files.
021   *
022   * <p>A typical problem is the referenced tool is not installed, this can be fixed by installed
023   * the tool and re-saving the workflow and then re-exporting it. *
024   *
025   * </BLOCKQUOTE>
026   */
027  java.util.Optional<String> getErrors();
028}