Class IllegalRuleParamsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jetbrains.buildServer.serverSide.impl.cleanup.v2019.settings.IllegalRuleException
-
- jetbrains.buildServer.serverSide.impl.cleanup.v2019.settings.IllegalRuleParamsException
-
- All Implemented Interfaces:
Serializable
public class IllegalRuleParamsException extends IllegalRuleException
- Since:
- 2019.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IllegalRuleParamsException(RulePart rulePart, String paramName, String message)
IllegalRuleParamsException(RulePart rulePart, String paramName, String paramValue, String message)
IllegalRuleParamsException(RulePart rulePart, String paramName, String paramValue, String message, Exception cause)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IllegalRuleParamsException
absentParam(RulePart rulePart, String paramName, Map<String,String> paramsSubMap)
static IllegalRuleParamsException
absentType(RulePart rulePart)
String
getParamName()
Optional<String>
getParamValue()
RulePart
getRulePart()
static IllegalRuleParamsException
illegalParamValue(RulePart rulePart, String paramName, String paramValue)
static IllegalRuleParamsException
illegalParamValue(RulePart rulePart, String paramName, String paramValue, Exception cause)
static IllegalRuleParamsException
illegalTypeValue(RulePart rulePart, String typeValue)
String
toString()
-
Methods inherited from class jetbrains.buildServer.serverSide.impl.cleanup.v2019.settings.IllegalRuleException
getMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IllegalRuleParamsException
public IllegalRuleParamsException(@NotNull RulePart rulePart, @NotNull String paramName, @NotNull String message)
-
IllegalRuleParamsException
public IllegalRuleParamsException(@NotNull RulePart rulePart, @NotNull String paramName, @NotNull String paramValue, @NotNull String message)
-
-
Method Detail
-
absentType
@NotNull public static IllegalRuleParamsException absentType(@NotNull RulePart rulePart)
-
illegalTypeValue
@NotNull public static IllegalRuleParamsException illegalTypeValue(@NotNull RulePart rulePart, @NotNull String typeValue)
-
absentParam
@NotNull public static IllegalRuleParamsException absentParam(@NotNull RulePart rulePart, @NotNull String paramName, @NotNull Map<String,String> paramsSubMap)
-
illegalParamValue
@NotNull public static IllegalRuleParamsException illegalParamValue(@NotNull RulePart rulePart, @NotNull String paramName, @NotNull String paramValue)
-
illegalParamValue
@NotNull public static IllegalRuleParamsException illegalParamValue(@NotNull RulePart rulePart, @NotNull String paramName, @NotNull String paramValue, @NotNull Exception cause)
-
getRulePart
@NotNull public RulePart getRulePart()
-
getParamName
@NotNull public String getParamName()
-
-