Page MenuHomec4science

ConduitApplicationNotInstalledException.php
No OneTemporary

File Metadata

Created
Fri, Nov 1, 12:27

ConduitApplicationNotInstalledException.php

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

Event Timeline