From: Sterling Hughes Date: Fri, 21 Jul 2000 18:34:37 +0000 (+0000) Subject: New naming sequence for PEAR_Error X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f66de5960352d3f8df08d46d3808dc1390ee4618;p=php New naming sequence for PEAR_Error - PEAR_ERROR -> PEAR_Error - $CLASSNAME -> $classname New naming sequence for Exceptions - ExceptionFileFind -> FileFindException. --- diff --git a/pear/Makefile.in b/pear/Makefile.in index e427a020cb..4fbdf6cf53 100644 --- a/pear/Makefile.in +++ b/pear/Makefile.in @@ -19,7 +19,7 @@ PEAR_FILES = \ DB/storage.php \ HTTP.php \ File/Find.php \ - PEAR_ERROR.php + PEAR_Error.php install-data-local: @if $(mkinstalldirs) $(peardir); then \ diff --git a/pear/PEAR_ERROR.php b/pear/PEAR_Error.php similarity index 68% rename from pear/PEAR_ERROR.php rename to pear/PEAR_Error.php index 1c45bd23a0..7fa2218059 100644 --- a/pear/PEAR_ERROR.php +++ b/pear/PEAR_Error.php @@ -25,38 +25,49 @@ // This class is based on ideas from Ulf Wendel // -class PEAR_ERROR +class PEAR_Error { - var $CLASSNAME = ''; - var $ERROR_MESSAGE_PREFIX = ''; - var $ERROR_PREPEND = ''; - var $ERROR_APPEND = ''; + var $classname = ''; + var $error_message_prefix = ''; + var $error_prepend = ''; + var $error_append = ''; - var $DIE_ON_ERROR = ''; - var $AUTO_PRINT_ERROR = ''; + var $die_on_error = false; + var $auto_print_error = false; - var $LEVEL = 0; - var $TRIGGER_ERROR = false; + var $level = 0; + var $trigger_error = false; var $message = ''; var $file = ''; var $line = 0; - function PEAR_ERROR ($message, $file = __FILE__, $line = __LINE__) + /* + * constructor, set the basics... + */ + function PEAR_Error ($message, $file = __FILE__, $line = __LINE__) { $this->message = $message; $this->file = $file; $this->line = $line; } + /* + * string getMessage (void) + * Get the error message from an exception object. + */ function getMessage () { - return ($this->ERROR_PREPEND . $this->ERROR_MESSAGE_PREFIX . - $this->message . $this->ERROR_APPEND); + return ($this->error_prepend . $this->error_message_prefix . + $this->message . $this->error_append); } + /* + * string getType (void) + * Get the name of the exception. + */ function getType () { - return ($this->CLASSNAME); + return ($this->classname); } } \ No newline at end of file