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 class
VersionedSettingsError.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 boolean
equals(Object o)
Map<String,String>
getAttributes()
String
getDescription()
String
getLocation()
String
getMessage()
String
getProjectId()
String
getSource()
List<String>
getStackTrace()
VersionedSettingsError.Type
getType()
String
getTypeCaption()
int
hashCode()
void
setStackTrace(Collection<String> stackTrace)
String
toString()
void
write(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)
-
-