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