From 78c050114c924cc78d3633584a7ebff0038f8a8f Mon Sep 17 00:00:00 2001 From: Ulf Wendel Date: Thu, 8 Mar 2001 20:39:15 +0000 Subject: [PATCH] Added a basic Cache_Error class. --- pear/Cache.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pear/Cache.php b/pear/Cache.php index c49f4cfb5e..01445167cc 100644 --- a/pear/Cache.php +++ b/pear/Cache.php @@ -18,6 +18,8 @@ // // $Id$ +require_once "Cache/Error.php"; + /** * Cache is a base class for cache implementations. * @@ -136,7 +138,7 @@ class Cache { * @param mixed userdefined expire date * @param string cache group * @return boolean - * @throws CacheError + * @throws Cache_Error * @access public * @see getUserdata() */ -- 2.50.1