Ejemplo n.º 1
0
 public static Exception BatchVariableAlreadyExists(string VariableName) =>
 HttpError.Conflict(ErrMsg.BatchVariableAlreadyExists(VariableName));
Ejemplo n.º 2
0
 public static Exception CommandOptionNotFound(string OptionName) =>
 HttpError.NotFound(ErrMsg.CommandOptionNotFound(OptionName));
Ejemplo n.º 3
0
 public static Exception BatchNotFound(string batchId) =>
 HttpError.NotFound(ErrMsg.BatchNotFound(batchId));
Ejemplo n.º 4
0
 public static Exception CommandVariableNotFound(string VariableName) =>
 HttpError.NotFound(ErrMsg.CommandVariableNotFound(VariableName));
Ejemplo n.º 5
0
 public static Exception CommandOptionAlreadyExists(string OptionName) =>
 HttpError.Conflict(ErrMsg.CommandOptionAlreadyExists(OptionName));
Ejemplo n.º 6
0
 public static Exception StepArtifactOptionNotFound(string OptionName) =>
 HttpError.NotFound(ErrMsg.StepArtifactOptionNotFound(OptionName));
Ejemplo n.º 7
0
 public static Exception CommandNotFound(string CommandName) =>
 HttpError.NotFound(ErrMsg.CommandNotFound(CommandName));
Ejemplo n.º 8
0
 public static Exception StepVariableNotFound(string VariableName) =>
 HttpError.NotFound(ErrMsg.StepVariableNotFound(VariableName));
Ejemplo n.º 9
0
 public static Exception StepArtifactOptionAlreadyExists(string OptionName) =>
 HttpError.Conflict(ErrMsg.StepArtifactOptionAlreadyExists(OptionName));
Ejemplo n.º 10
0
 public static Exception StepNotFound(string StepName) =>
 HttpError.NotFound(ErrMsg.StepNotFound(StepName));
Ejemplo n.º 11
0
 public static Exception StepAlreadyExists(string StepName) =>
 HttpError.Conflict(ErrMsg.StepAlreadyExists(StepName));
Ejemplo n.º 12
0
 public static Exception BatchArtifactNotFound(string ArtifactName) =>
 HttpError.NotFound(ErrMsg.BatchArtifactNotFound(ArtifactName));
Ejemplo n.º 13
0
 public static Exception BatchArtifactAlreadyExists(string ArtifactName) =>
 HttpError.Conflict(ErrMsg.BatchArtifactAlreadyExists(ArtifactName));
Ejemplo n.º 14
0
 public static Exception BatchOptionNotFound(string OptionName) =>
 HttpError.NotFound(ErrMsg.BatchOptionNotFound(OptionName));