13 lines
221 B
PHP
13 lines
221 B
PHP
<?php
|
|
/**
|
|
* The exception class for VK library.
|
|
* @author Vlad Pronsky <vladkens@yandex.ru>
|
|
* @license https://raw.github.com/vladkens/VK/master/LICENSE MIT
|
|
*/
|
|
namespace VK;
|
|
|
|
class VKException extends \Exception
|
|
{
|
|
}
|
|
|