Page MenuHomec4science

ConduitApplicationNotInstalledException.php
No OneTemporary

File Metadata

Created
Tue, Nov 19, 06:15

ConduitApplicationNotInstalledException.php

<?php
final class ConduitApplicationNotInstalledException
extends ConduitMethodNotFoundException {
public function __construct(ConduitAPIMethod $method, $application) {
parent::__construct(
pht(
"Method '%s' belongs to application '%s', which is not installed.",
$method->getAPIMethodName(),
$application));
}
}

Event Timeline