summaryrefslogtreecommitdiff
path: root/framework/Exceptions/TException.php
blob: 0c51e1f18efc3275a7fb383229e2ba11aeed3731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
/**
 * Exception classes file
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.pradosoft.com/
 * @copyright Copyright &copy; 2005 PradoSoft
 * @license http://www.pradosoft.com/license/
 * @version $Revision: $  $Date: $
 * @package System.Exceptions
 */

/**
 * TException class
 *
 * TException is the base class for all PRADO exceptions.
 * TException
 *     TSystemException
 *         TNullReferenceException
 *         TIndexOutOfRangeException
 *         TArithmeticException
 *         TInvalidValueException
 *         TInvalidTypeException
 *         TInvalidFormatException
 *         TInvalidOperationException
 *         TConfigurationException
 *         TSecurityException
 *         TIOException
 *         TDBException
 *         THttpException
 *		   TNotSupportedException
 *     TApplicationException
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @version $Revision: $  $Date: $
 * @package System.Exceptions
 * @since 3.0
 */
class TException extends Exception
{
	private $_errorCode='';

	public function __construct($errorCode)
	{
		$this->_errorCode=$errorCode;
		$args=func_get_args();
		$args[0]=$this->translateErrorCode($errorCode);
		$str=call_user_func_array('sprintf',$args);
		parent::__construct($str);
	}

	protected function translateErrorCode($key)
	{
	//	$msgFile=dirname(__FILE__).'/messages.'.Prado::getLocale();
	//	if(!is_file($msgFile))
			$msgFile=dirname(__FILE__).'/messages.en';
		if(($entries=@file($msgFile))===false)
			return $key;
		else
		{
			foreach($entries as $entry)
			{
				@list($code,$message)=explode('=',$entry,2);
				if(trim($code)===$key)
					return trim($message);
			}
			return $key;
		}
	}

	public function getErrorCode()
	{
		return $this->_errorCode;
	}

	public function setErrorCode($errorCode)
	{
		$this->_errorCode=$errorCode;
	}

	public function getErrorMessage()
	{
		return $this->getMessage();
	}

	public function setErrorMessage($msg)
	{
		$this->message=$msg;
	}
}

class TSystemException extends TException
{
}

class TApplicationException extends TException
{
}

class TNullReferenceException extends TSystemException
{
}

class TIndexOutOfRangeException extends TSystemException
{
}

class TArithmeticException extends TSystemException
{
}

class TInvalidOperationException extends TSystemException
{
}

class TInvalidDataTypeException extends TSystemException
{
}

class TInvalidDataValueException extends TSystemException
{
}

class TInvalidDataFormatException extends TSystemException
{
}

class TConfigurationException extends TSystemException
{
}

class TIOException extends TException
{
}

class TDBException extends TException
{
}

class TSecurityException extends TException
{
}

class THttpException extends TException
{
}

class TNotSupportedException extends TException
{
}

class TPhpErrorException extends TException
{
	public function __construct($errno,$errstr,$errfile,$errline)
	{
		static $errorTypes=array(
			E_ERROR           => "Error",
			E_WARNING         => "Warning",
			E_PARSE           => "Parsing Error",
			E_NOTICE          => "Notice",
			E_CORE_ERROR      => "Core Error",
			E_CORE_WARNING    => "Core Warning",
			E_COMPILE_ERROR   => "Compile Error",
			E_COMPILE_WARNING => "Compile Warning",
			E_USER_ERROR      => "User Error",
			E_USER_WARNING    => "User Warning",
			E_USER_NOTICE     => "User Notice",
			E_STRICT          => "Runtime Notice"
		);
		$errorType=isset($errorTypes[$errno])?$errorTypes[$errno]:'Unknown Error';
		parent::__construct("[$errorType] $errstr (@line $errline in file $errfile).");
	}
}

?>