home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / Services / Ebay / Exception.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  2.3 KB  |  77 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. // +----------------------------------------------------------------------+
  4. // | PHP Version 4                                                        |
  5. // +----------------------------------------------------------------------+
  6. // | Copyright (c) 1997-2002 The PHP Group                                |
  7. // +----------------------------------------------------------------------+
  8. // | This source file is subject to version 2.0 of the PHP license,       |
  9. // | that is bundled with this package in the file LICENSE, and is        |
  10. // | available at through the world-wide-web at                           |
  11. // | http://www.php.net/license/2_02.txt.                                 |
  12. // | If you did not receive a copy of the PHP license and are unable to   |
  13. // | obtain it through the world-wide-web, please send a note to          |
  14. // | license@php.net so we can mail you a copy immediately.               |
  15. // +----------------------------------------------------------------------+
  16. // | Authors: Stephan Schmidt <schst@php.net>                             |
  17. // +----------------------------------------------------------------------+
  18. //
  19. // $Id: Exception.php,v 1.3 2004/11/07 12:48:52 schst Exp $
  20.  
  21. /**
  22.  * Services/Ebay/Exception.php
  23.  *
  24.  * Contains all Exception classes
  25.  *
  26.  * @package  Services_Ebay
  27.  * @author   Stephan Schmidt <schst@php.net>
  28.  */
  29.  
  30. /**
  31.  * Services_Ebay_Exception
  32.  *
  33.  * Base class for all exceptions thrown by Services_Ebay
  34.  *
  35.  * @package  Services_Ebay
  36.  * @author   Stephan Schmidt <schst@php.net>
  37.  */
  38. class Services_Ebay_Exception extends PEAR_Exception
  39. {
  40. }
  41.  
  42. /**
  43.  * Services_Ebay_Auth_Exception
  44.  *
  45.  * Authentication failure
  46.  *
  47.  * @package  Services_Ebay
  48.  * @author   Stephan Schmidt <schst@php.net>
  49.  */
  50. class Services_Ebay_Auth_Exception extends Services_Ebay_Exception
  51. {
  52. }
  53.  
  54. /**
  55.  * Services_Ebay_Transport_Exception
  56.  *
  57.  * Transport failure
  58.  *
  59.  * @package  Services_Ebay
  60.  * @author   Stephan Schmidt <schst@php.net>
  61.  */
  62. class Services_Ebay_Transport_Exception extends Services_Ebay_Exception
  63. {
  64. }
  65.  
  66. /**
  67.  * Services_Ebay_API_Exception
  68.  *
  69.  * API Failure
  70.  *
  71.  * @package  Services_Ebay
  72.  * @author   Stephan Schmidt <schst@php.net>
  73.  */
  74. class Services_Ebay_API_Exception extends Services_Ebay_Exception
  75. {
  76. }
  77. ?>