1<?php
2/**
3 * Horde Routes package
4 *
5 * This package is heavily inspired by the Python "Routes" library
6 * by Ben Bangert (http://routes.groovie.org).  Routes is based
7 * largely on ideas from Ruby on Rails (http://www.rubyonrails.org).
8 *
9 * @author  Maintainable Software, LLC. (http://www.maintainable.com)
10 * @author  Mike Naberezny <mike@maintainable.com>
11 * @license http://www.horde.org/licenses/bsd BSD
12 * @package Routes
13 */
14
15/**
16 * Exception class for the Horde_Routes package.  All exceptions thrown
17 * from the package will be of this type.
18 *
19 * @package Routes
20 */
21class Horde_Routes_Exception extends Horde_Exception_Wrapped
22{
23}
24