Class ErrorMessage
- java.lang.Object
-
- com.microsoft.azure.batch.protocol.models.ErrorMessage
-
public class ErrorMessage extends Object
An error message received in an Azure Batch error response.
-
-
Constructor Summary
Constructors Constructor Description ErrorMessage()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringlang()Get the lang value.Stringvalue()Get the value value.ErrorMessagewithLang(String lang)Set the lang value.ErrorMessagewithValue(String value)Set the value value.
-
-
-
Method Detail
-
lang
public String lang()
Get the lang value.- Returns:
- the lang value
-
withLang
public ErrorMessage withLang(String lang)
Set the lang value.- Parameters:
lang- the lang value to set- Returns:
- the ErrorMessage object itself.
-
value
public String value()
Get the value value.- Returns:
- the value value
-
withValue
public ErrorMessage withValue(String value)
Set the value value.- Parameters:
value- the value value to set- Returns:
- the ErrorMessage object itself.
-
-