14 lines
169 B
PHP
14 lines
169 B
PHP
|
<?php
|
||
|
|
||
|
namespace Alltube\Library\Exception;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
/**
|
||
|
* Base class for Alltube exceptions.
|
||
|
*/
|
||
|
abstract class AlltubeLibraryException extends Exception
|
||
|
{
|
||
|
|
||
|
}
|