Page MenuHomec4science

ConduitApplicationNotInstalledException.php
No OneTemporary

File Metadata

Created
Wed, Dec 25, 02:28

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