LDAPAccountManager/lam/lib/3rdParty/composer/pear-pear.horde.org/Horde_Secret/Horde/Secret/Exception.php

22 lines
611 B
PHP

<?php
/**
* Exception handler for the Horde_Secret library.
*
* Copyright 2010-2016 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;
}