]> git.llucax.com Git - mecon/ai.git/blob - lib/AI/Error.php
Se agregan 2 tipos de orden predefinidos para los servicios:
[mecon/ai.git] / lib / AI / Error.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                  AI (Administrador de Intranet)                    |
6 // +--------------------------------------------------------------------+
7 // | This file is part of AI.                                           |
8 // |                                                                    |
9 // | AI is free software; you can redistribute it and/or modify         |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | AI is distributed in the hope that it will be useful, but          |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Jun 26 16:49:08 2003                                   |
24 // | Autor:  Leandro Lucarella <llucar@mecon.gov.ar>                    |
25 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30 // +X2C includes
31 require_once 'PEAR.php';
32 // ~X2C
33
34 /**
35  * Error que indica que no hay más resultados en una base de datos.
36  *
37  * Es un error esperado y poco grave que sucede cada vez que se itera
38  * sobre un resultado de una base de datos.
39  */
40 define('AI_ERROR_NO_RESULTADOS', 1);
41
42 /**
43  * Error que indica que un padre no se puede borrar porque aún tiene
44  * hijos.
45  *
46  * Es un error esperado y poco grave que sucede cuando se intenta borrar
47  * un elemento del tipo AI_DBTreeObject que aún tiene hijos.
48  */
49 define('AI_ERROR_TIENE_HIJOS', 2);
50
51 /**
52  * Error que indica que el tipo de orden usado no es válido.
53  * Es un error no esperado.
54  */
55 define('AI_ERROR_ORDEN_INVALIDO', 3);
56
57 // +X2C Class 469 :AI_Error
58 /**
59  * @package AI
60  * @access public
61  */
62 class AI_Error extends PEAR_Error {
63     // ~X2C
64
65     // +X2C Operation 470
66     /**
67      * @param  int $codigo Código de error.
68      * @param  string $mensaje Mensaje para mostrar
69      *
70      * @return void
71      * @access public
72      */
73     function AI_Error($codigo, $mensaje = '') // ~X2C
74     {
75         $this->PEAR_Error($mensaje, $codigo);
76     }
77     // -X2C
78
79     // +X2C Operation 530
80     /**
81      * @param  mixed $error Variable a evaluar si es un error.
82      *
83      * @return bool
84      * @access public
85      * @static
86      */
87     function isError($error) // ~X2C
88     {
89         return is_a($error, 'ai_error');
90     }
91     // -X2C
92
93 } // -X2C Class :AI_Error
94
95 ?>