1<?php
2
3/**
4 * The Crypt_MicroID Exception
5 *
6 * PHP version 5.1.0+
7 *
8 * LICENSE: This source file is subject to the New BSD license that is
9 * available through the world-wide-web at the following URI:
10 * http://www.opensource.org/licenses/bsd-license.php. If you did not receive
11 * a copy of the New BSD License and are unable to obtain it through the web,
12 * please send a note to license@php.net so we can mail you a copy immediately.
13 *
14 * @category Crypt
15 * @package  Crypt_MicroID
16 * @author   Kurt Wilms <wilms@cs.umn.edu>
17 * @license  http://www.opensource.org/licenses/bsd-license.php BSD
18 * @version  CVS: $Id:$
19 * @link     http://pear.php.net/package/Crypt_MicroID
20 * @link     http://microid.org/
21 */
22
23require_once 'PEAR/Exception.php';
24
25/**
26 * Crypt_MicroID_AlgorithmNotFoundException
27 *
28 * @category Crypt
29 * @package  Crypt_MicroID
30 * @author   Kurt Wilms <wilms@cs.umn.edu>
31 * @license  http://www.opensource.org/licenses/bsd-license.php BSD
32 * @link     http://pear.php.net/package/Crypt_MicroID
33 */
34class Crypt_MicroID_AlgorithmNotFoundException extends PEAR_Exception
35{
36
37}
38
39?>
40