Net_Growl_Exception
===================
include::../revision.txt[]

Source Code
-----------

[source,php,numbered]
----
<?php
/**
 * Sends notifications to {@link http://growl.info Growl}
 *
 * PHP version 5
 *
 * @category Networking
 * @package  Net_Growl
 * @author   Laurent Laville <pear@laurent-laville.org>
 * @license  http://www.opensource.org/licenses/bsd-license.php  BSD
 * @version  CVS: $Id:$
 * @link     http://growl.laurent-laville.org/
 * @since    File available since Release 0.9.0
 */

/**
 * Dedicated Exception for {@link Net_Growl}
 *
 * @category Networking
 * @package  Net_Growl
 * @author   Laurent Laville <pear@laurent-laville.org>
 * @license  http://www.opensource.org/licenses/bsd-license.php  BSD
 * @version  Release: 2.1.1
 * @link     http://growl.laurent-laville.org/
 * @since    Class available since Release 0.9.0
 */
class Net_Growl_Exception extends Exception
{
}
?>
----
