14 lines
168 B
PHP
14 lines
168 B
PHP
|
<?php
|
||
|
|
||
|
namespace Alltube\Exception;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
/**
|
||
|
* Class DependencyException
|
||
|
* @package Alltube\Exception
|
||
|
*/
|
||
|
class DependencyException extends Exception
|
||
|
{
|
||
|
}
|