Documentation is available at SumError.php
1 <?php
2 /**
3 * @include File with utility functions
4 */
5 require_once 'utility.php';
6
7 /**
8 * The error class
9 * This error class is thrown when an error in one of the
10 * other Sum* classes occurs
11 * @author Derick Rethans <derick@php.net>
12 * @author Stig Bakken <ssb@fast.no>
13 * @copyright © 2002 by Derick Rethans, Wrox publishing
14 * @version $Id: $
15 * @package PHPDocExample
16 */
17 class SumError {
18 /**
19 * The constructor for the error class
20 * @param string $msg Error message
21 */
22 function SumError ($msg)
23 {
24 echo $msg. "\n";
25 }
26 }
27 ?>
Documentation generated on Tue, 18 Nov 2003 17:22:35 +0100 by phpDocumentor 1.2.2