wiki.techinc.nl/includes/resourceloader/dependencystore/DependencyStoreException.php
daniel 102c9573b3 Mark exceptions as @newable
Exceptions classes are nearly always value objects, and should in most
cases by newable.

Bug: T247862
Change-Id: I4faa8ec6ea8bc44086cfc8075b32d10eea61e9df
2020-07-08 17:51:38 +00:00

13 lines
171 B
PHP

<?php
namespace Wikimedia\DependencyStore;
use RuntimeException;
/**
* @stable to type
* @since 1.35
*/
class DependencyStoreException extends RuntimeException {
}