Leantime/leantime · error · \Exception
Provider does not exist
Error message
Provider does not exist
What it means
Error "Provider does not exist" thrown in Leantime/leantime.
Source
Thrown at app/Domain/Connector/Services/Providers.php:43
// providerId => provider
$this->providers = self::dispatch_filter('providerList', $this->providers);
}
public function getProviders(): array
{
return $this->providers;
}
/**
* @throws \Exception
*/
public function getProvider($providerId): object
{
if (isset($this->providers[$providerId])) {
return $this->providers[$providerId];
} else {
throw new \Exception('Provider does not exist');
}
}
}
View on GitHub (pinned to 9a9f49f100)
When it happens
Trigger: Thrown at app/Domain/Connector/Services/Providers.php:43 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Leantime/leantime@9a9f49f100 (2026-08-21).
Data as JSON: /api/errors/6315c32ac576b22f.
Report an issue: GitHub.