Class VersionedSettingsError
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.versionedSettings.VersionedSettingsError
-
public class VersionedSettingsError extends Object
Represents an error in versioned settings generation and loading
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classVersionedSettingsError.Type
-
Constructor Summary
Constructors Constructor Description VersionedSettingsError(VersionedSettingsError.Type errorType, String projectExternalId, String source, String message)VersionedSettingsError(VersionedSettingsError.Type errorType, String projectExternalId, String source, String location, String message)VersionedSettingsError(VersionedSettingsError.Type errorType, String projectExternalId, String source, String location, String message, Map<String,String> attributes)VersionedSettingsError(org.jdom.Element xmlError)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)Map<String,String>getAttributes()StringgetDescription()StringgetLocation()StringgetMessage()StringgetProjectId()StringgetSource()List<String>getStackTrace()VersionedSettingsError.TypegetType()StringgetTypeCaption()inthashCode()voidsetStackTrace(Collection<String> stackTrace)StringtoString()voidwrite(org.jdom.Element xmlErrors)
-
-
-
Constructor Detail
-
VersionedSettingsError
public VersionedSettingsError(@NotNull VersionedSettingsError.Type errorType, @NotNull String projectExternalId, @NotNull String source, @NotNull String message)
-
VersionedSettingsError
public VersionedSettingsError(@NotNull VersionedSettingsError.Type errorType, @NotNull String projectExternalId, @NotNull String source, @Nullable String location, @NotNull String message)
-
VersionedSettingsError
public VersionedSettingsError(@NotNull VersionedSettingsError.Type errorType, @NotNull String projectExternalId, @NotNull String source, @Nullable String location, @NotNull String message, @NotNull Map<String,String> attributes)
-
VersionedSettingsError
public VersionedSettingsError(org.jdom.Element xmlError)
-
-
Method Detail
-
setStackTrace
public void setStackTrace(@NotNull Collection<String> stackTrace)
-
getType
@NotNull public VersionedSettingsError.Type getType()
-
getTypeCaption
@NotNull public String getTypeCaption()
-
getSource
@NotNull public String getSource()
-
getLocation
@Nullable public String getLocation()
-
getMessage
@NotNull public String getMessage()
-
getProjectId
@NotNull public String getProjectId()
-
getDescription
@NotNull public String getDescription()
-
write
public void write(org.jdom.Element xmlErrors)
-
-