You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Config/EnvironmentVariables/EnvironmentVariableNotDefin...

9 lines
353 B

namespace Recyclarr.Config.EnvironmentVariables;
public class EnvironmentVariableNotDefinedException(int line, string envVarName) : Exception(
$"Line {line} refers to undefined environment variable {envVarName} and no default is specified.")
{
public int Line { get; } = line;
public string EnvironmentVariableName { get; } = envVarName;
}