Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ContainerExceptionInterface.php « src « container « psr « vendor - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f213f2fed52688e30b4e3c2445201a42e932bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Psr\Container;

use Throwable;

/**
 * Base interface representing a generic exception in a container.
 */
interface ContainerExceptionInterface extends Throwable
{
}