Source for file Exception.php

Documentation is available at Exception.php

  1. <?php
  2. /*
  3.  *  $Id: Exception.php 1080 2007-02-10 18:17:08Z romanb $
  4.  *
  5.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9.  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16.  *
  17.  * This software consists of voluntary contributions made by many individuals
  18.  * and is licensed under the LGPL. For more information, see
  19.  * <http://www.phpdoctrine.com>.
  20.  */
  21. Doctrine::autoload('Doctrine_Connection_Exception');
  22. /**
  23.  * Doctrine_Connection_Oracle_Exception
  24.  *
  25.  * @package     Doctrine
  26.  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
  27.  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
  28.  * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
  29.  * @since       1.0
  30.  * @version     $Revision: 1080 $
  31.  * @category    Object Relational Mapping
  32.  * @link        www.phpdoctrine.com
  33.  */
  34. {
  35.     /**
  36.      * @var array $errorCodeMap         an array that is used for determining portable
  37.      *                                   error code from a native database error code
  38.      */
  39.     protected static $errorCodeMap array(
  40.                                       1    => Doctrine::ERR_CONSTRAINT,
  41.                                       900  => Doctrine::ERR_SYNTAX,
  42.                                       904  => Doctrine::ERR_NOSUCHFIELD,
  43.                                       913  => Doctrine::ERR_VALUE_COUNT_ON_ROW,
  44.                                       921  => Doctrine::ERR_SYNTAX,
  45.                                       923  => Doctrine::ERR_SYNTAX,
  46.                                       942  => Doctrine::ERR_NOSUCHTABLE,
  47.                                       955  => Doctrine::ERR_ALREADY_EXISTS,
  48.                                       1400 => Doctrine::ERR_CONSTRAINT_NOT_NULL,
  49.                                       1401 => Doctrine::ERR_INVALID,
  50.                                       1407 => Doctrine::ERR_CONSTRAINT_NOT_NULL,
  51.                                       1418 => Doctrine::ERR_NOT_FOUND,
  52.                                       1476 => Doctrine::ERR_DIVZERO,
  53.                                       1722 => Doctrine::ERR_INVALID_NUMBER,
  54.                                       2289 => Doctrine::ERR_NOSUCHTABLE,
  55.                                       2291 => Doctrine::ERR_CONSTRAINT,
  56.                                       2292 => Doctrine::ERR_CONSTRAINT,
  57.                                       2449 => Doctrine::ERR_CONSTRAINT,
  58.                                       );
  59.     /**
  60.      * This method checks if native error code/message can be
  61.      * converted into a portable code and then adds this
  62.      * portable error code to $portableCode field
  63.      *
  64.      * @param array $errorInfo      error info array
  65.      * @since 1.0
  66.      * @return boolean              whether or not the error info processing was successfull
  67.      *                               (the process is successfull if portable error code was found)
  68.      */
  69.     public function processErrorInfo(array $errorInfo)
  70.     {
  71.         $code $errorInfo[1];
  72.         if (isset(self::$errorCodeMap[$code])) {
  73.             $this->portableCode = self::$errorCodeMap[$code];
  74.             return true;
  75.         }
  76.         return false;
  77.     }
  78. }