24 lines
646 B
PHP
24 lines
646 B
PHP
<?php
|
|
/**
|
|
* Horde Routes package
|
|
*
|
|
* This package is heavily inspired by the Python "Routes" library
|
|
* by Ben Bangert (http://routes.groovie.org). Routes is based
|
|
* largely on ideas from Ruby on Rails (http://www.rubyonrails.org).
|
|
*
|
|
* @author Maintainable Software, LLC. (http://www.maintainable.com)
|
|
* @author Mike Naberezny <mike@maintainable.com>
|
|
* @license http://www.horde.org/licenses/bsd BSD
|
|
* @package Routes
|
|
*/
|
|
|
|
/**
|
|
* Exception class for the Horde_Routes package. All exceptions thrown
|
|
* from the package will be of this type.
|
|
*
|
|
* @package Routes
|
|
*/
|
|
class Horde_Routes_Exception extends Horde_Exception_Wrapped
|
|
{
|
|
}
|