1<?php
2/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
3
4/**
5 * An exception thrown by Net_Nmap when it encounters an unrecoverable error.
6 *
7 * PHP version 5
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA
22 *
23 * @category  Net
24 * @package   Net_Nmap
25 * @author    Luca Corbo <lucor@ortro.net>
26 * @copyright 2008 Luca Corbo
27 * @license   GNU/LGPL v2.1
28 * @link      http://pear.php.net/packages/Net_Nmap
29 */
30
31require_once 'PEAR/Exception.php';
32
33/**
34 * An exception thrown by Net_Nmap when it encounters an unrecoverable error.
35 *
36 * PHP version 5
37 *
38 * This library is free software; you can redistribute it and/or
39 * modify it under the terms of the GNU Lesser General Public
40 * License as published by the Free Software Foundation; either
41 * version 2.1 of the License.
42 *
43 * This library is distributed in the hope that it will be useful,
44 * but WITHOUT ANY WARRANTY; without even the implied warranty of
45 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
46 * Lesser General Public License for more details.
47 *
48 * You should have received a copy of the GNU Lesser General Public
49 * License along with this library; if not, write to the Free Software
50 * Foundation, Inc., 59 Temple Place, Suite 330,Boston,MA 02111-1307 USA
51 *
52 * @category  Net
53 * @package   Net_Nmap
54 * @author    Luca Corbo <lucor@ortro.net>
55 * @copyright 2008 Luca Corbo
56 * @license   GNU/LGPL v2.1
57 * @link      http://pear.php.net/packages/Net_Nmap
58 */
59class Net_Nmap_Exception extends PEAR_Exception
60{
61
62}
63?>