Page MenuHomec4science

ConduitApplicationNotInstalledException.php
No OneTemporary

File Metadata

Created
Mon, Feb 3, 04:26

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