[ Index ]
 

Code source de eZ Publish 3.9.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/lib/ezsoap/classes/ -> ezsoapfault.php (source)

   1  <?php
   2  //
   3  // Definition of eZSOAPFault class
   4  //
   5  // Created on: <30-May-2002 15:51:41 bf>
   6  //
   7  // SOFTWARE NAME: eZ publish
   8  // SOFTWARE RELEASE: 3.9.0
   9  // BUILD VERSION: 17785
  10  // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS
  11  // SOFTWARE LICENSE: GNU General Public License v2.0
  12  // NOTICE: >
  13  //   This program is free software; you can redistribute it and/or
  14  //   modify it under the terms of version 2.0  of the GNU General
  15  //   Public License as published by the Free Software Foundation.
  16  //
  17  //   This program is distributed in the hope that it will be useful,
  18  //   but WITHOUT ANY WARRANTY; without even the implied warranty of
  19  //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20  //   GNU General Public License for more details.
  21  //
  22  //   You should have received a copy of version 2.0 of the GNU General
  23  //   Public License along with this program; if not, write to the Free
  24  //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  25  //   MA 02110-1301, USA.
  26  //
  27  //
  28  
  29  /*!
  30    \class eZSOAPFault ezsoapfault.php
  31    \ingroup eZSOAP
  32    \brief eZSOAPFault handles SOAP fault messages
  33  
  34  */
  35  
  36  class eZSOAPFault
  37  {
  38      /*!
  39       Constructs a new eZSOAPFault object
  40      */
  41      function eZSOAPFault( $faultCode = "", $faultString = "" )
  42      {
  43          $this->FaultCode = $faultCode;
  44          $this->FaultString = $faultString;
  45      }
  46  
  47      /*!
  48       Returns the fauls code.
  49      */
  50      function faultCode()
  51      {
  52          return $this->FaultCode;
  53      }
  54  
  55      /*!
  56       Returns the fauls string.
  57      */
  58      function faultString()
  59      {
  60          return $this->FaultString;
  61      }
  62  
  63      /// Contains the fault code
  64      var $FaultCode;
  65  
  66      /// Contains the fault string
  67      var $FaultString;
  68  }
  69  
  70  ?>


Généré le : Sat Feb 24 10:30:04 2007 par Balluche grâce à PHPXref 0.7