PHP Classes

File: SimpleObject.php

Recommend this page to a friend!
  Classes of Eugene Panin   Remote Content retriever   SimpleObject.php   Download  
File: SimpleObject.php
Role: ???
Content type: text/plain
Description: Simple object abstract class
Class: Remote Content retriever
Author: By
Last change:
Date: 23 years ago
Size: 652 bytes
 

Contents

Class file image Download
<? /** ** Simple abstract class. ** Usability of this class is under GPL. ** @author Eugene Panin, var@express.ru **/ class SimpleObject { var $lastError = ''; /** ** Gets the last error message. ** @returns string Returns last error message. ** @scope public **/ function getError() { return $this->lastError; } /** ** Sets current error message. ** @returns void ** @scope protected **/ function setError($newVal='') { $this->lastError = $newVal; } } ?>