Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
vibes
/
includes
/
libraries
/
lock
/
exception
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace malkusch\lock\exception; /** * Common php-lock/lock exception interface. * * @author Petr Levtonov <petr@levtonov.com> * @license WTFPL * * @method string getMessage() * @method int getCode() * @method string getFile() * @method int getLine() * @method array getTrace() * @method string getTraceAsString() * @method \Throwable|null getPrevious() * @method string __toString() */ interface PhpLockException { }