1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-12 09:09:39 +01:00

Exceptions: more CS adjustments

This commit is contained in:
terrafrost 2015-07-15 13:44:48 -05:00
parent 50e8230350
commit 51700b6065
2 changed files with 14 additions and 0 deletions

View File

@ -7,6 +7,7 @@
* *
* @category Exception * @category Exception
* @package InvalidInputException * @package InvalidInputException
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2015 Jim Wigginton * @copyright 2015 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net * @link http://phpseclib.sourceforge.net
@ -14,6 +15,12 @@
namespace phpseclib\Exception; namespace phpseclib\Exception;
/**
* InvalidInputException
*
* @package InvalidInputException
* @author Jim Wigginton <terrafrost@php.net>
*/
class InvalidInputException extends \Exception class InvalidInputException extends \Exception
{ {
} }

View File

@ -7,6 +7,7 @@
* *
* @category Exception * @category Exception
* @package KeyGenerationException * @package KeyGenerationException
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2015 Jim Wigginton * @copyright 2015 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net * @link http://phpseclib.sourceforge.net
@ -14,6 +15,12 @@
namespace phpseclib\Exception; namespace phpseclib\Exception;
/**
* KeyGenerationException
*
* @package InvalidInputException
* @author Jim Wigginton <terrafrost@php.net>
*/
class KeyGenerationException extends \Exception class KeyGenerationException extends \Exception
{ {
} }