* @link http://www.engageinteractive.com/dom_xmlrpc/ DOM XML-RPC Home Page * DOM XML-RPC is Free Software **/ /** * A representation of an XML-RPC fault * * @package dom-xmlrpc * @author John Heinstein */ class dom_xmlrpc_fault { /** @var int The fault code */ var $faultCode; /** @var string A string description of the fault code */ var $faultString; /** * Constructor: instantiates the fault object * @param int The fault code * @param string The fault string */ function dom_xmlrpc_fault($faultCode, $faultString) { $this->faultCode = $faultCode; $this->faultString = $faultString; } //dom_xmlrpc_fault /** * Returns the fault code * @return int The fault code */ function getFaultCode() { return $this->faultCode; } //getFaultCode /** * Returns the fault string * @return int The fault string */ function getFaultString() { return $this->faultString; } //getFaultStringltCode } //dom_xmlrpc_fault ?>