public static Exception BatchVariableAlreadyExists(string VariableName) => HttpError.Conflict(ErrMsg.BatchVariableAlreadyExists(VariableName));
public static Exception CommandOptionNotFound(string OptionName) => HttpError.NotFound(ErrMsg.CommandOptionNotFound(OptionName));
public static Exception BatchNotFound(string batchId) => HttpError.NotFound(ErrMsg.BatchNotFound(batchId));
public static Exception CommandVariableNotFound(string VariableName) => HttpError.NotFound(ErrMsg.CommandVariableNotFound(VariableName));
public static Exception CommandOptionAlreadyExists(string OptionName) => HttpError.Conflict(ErrMsg.CommandOptionAlreadyExists(OptionName));
public static Exception StepArtifactOptionNotFound(string OptionName) => HttpError.NotFound(ErrMsg.StepArtifactOptionNotFound(OptionName));
public static Exception CommandNotFound(string CommandName) => HttpError.NotFound(ErrMsg.CommandNotFound(CommandName));
public static Exception StepVariableNotFound(string VariableName) => HttpError.NotFound(ErrMsg.StepVariableNotFound(VariableName));
public static Exception StepArtifactOptionAlreadyExists(string OptionName) => HttpError.Conflict(ErrMsg.StepArtifactOptionAlreadyExists(OptionName));
public static Exception StepNotFound(string StepName) => HttpError.NotFound(ErrMsg.StepNotFound(StepName));
public static Exception StepAlreadyExists(string StepName) => HttpError.Conflict(ErrMsg.StepAlreadyExists(StepName));
public static Exception BatchArtifactNotFound(string ArtifactName) => HttpError.NotFound(ErrMsg.BatchArtifactNotFound(ArtifactName));
public static Exception BatchArtifactAlreadyExists(string ArtifactName) => HttpError.Conflict(ErrMsg.BatchArtifactAlreadyExists(ArtifactName));
public static Exception BatchOptionNotFound(string OptionName) => HttpError.NotFound(ErrMsg.BatchOptionNotFound(OptionName));