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