16 lines
385 B
PHP
16 lines
385 B
PHP
<?php
|
|
/**
|
|
* Base exception class for Kronolith.
|
|
*
|
|
* Copyright 2009-2017 Horde LLC (http://www.horde.org/)
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @author Jan Schneider <jan@horde.org>
|
|
* @package Kronolith
|
|
*/
|
|
class Kronolith_Exception extends Horde_Exception_Wrapped
|
|
{
|
|
}
|