You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
611 B
22 lines
611 B
2 years ago
|
<?php
|
||
|
/**
|
||
|
* Exception handler for the Horde_Secret library.
|
||
|
*
|
||
|
* Copyright 2010-2017 Horde LLC (http://www.horde.org/)
|
||
|
*
|
||
|
* See the enclosed file COPYING for license information (LGPL). If you
|
||
|
* did not receive this file, see http://www.horde.org/licenses/lgpl21.
|
||
|
*
|
||
|
* @author Michael Slusarz <slusarz@horde.org>
|
||
|
* @category Horde
|
||
|
* @license http://www.horde.org/licenses/lgpl21 LGPL 2.1
|
||
|
* @package Secret
|
||
|
*/
|
||
|
class Horde_Secret_Exception extends Horde_Exception_Wrapped
|
||
|
{
|
||
|
// Error codes.
|
||
|
const NO_BLOWFISH_LIB = 0; // 0 for BC
|
||
|
const KEY_NOT_STRING = 2;
|
||
|
const KEY_ZERO_LENGTH = 3;
|
||
|
}
|