1<?php
2
3/**
4 * Interface for Danga's Gearman job scheduling system
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  Net
15 * @package   Net_Gearman
16 * @author    Joe Stump <joe@joestump.net>
17 * @copyright 2007-2008 Digg.com, Inc.
18 * @license   http://www.opensource.org/licenses/bsd-license.php New BSD License
19 * @version   CVS: $Id$
20 * @link      http://pear.php.net/package/Net_Gearman
21 * @link      http://www.danga.com/gearman/
22 */
23
24require_once 'PEAR/Exception.php';
25
26/**
27 * Exception class for Gearman jobs
28 *
29 * Your Gearman jobs should throw this from their run() method if they run
30 * into any kind of error.
31 *
32 * @category  Net
33 * @package   Net_Gearman
34 * @author    Joe Stump <joe@joestump.net>
35 * @copyright 2007-2008 Digg.com, Inc.
36 * @license   http://www.opensource.org/licenses/bsd-license.php New BSD License
37 * @link      http://www.danga.com/gearman/
38 * @see       Net_Gearman_Job_Common, Net_Gearman_Worker
39 */
40class Net_Gearman_Job_Exception extends PEAR_Exception
41{
42
43}
44
45?>
46