Hello,
I'm asking for Delphi native,not Prism(net).
This is my code:
raise Exception.Create('some test');
Undeclarated idenitifier "Exception".
Where's the problem,how do I throw/raise exceptions?
|
|
|
|
|
|
|
The exception class "Exception" is declared in the unit SysUtils. So you must add "SysUtils" to your uses-clause.
|
||||||||||
|
|
|
Remember to add SYSUTILS to your uses units. I also suggest you to a nice way to keep track of categories, formats of messagges and meaning of exception:
A simple way of using this is:
|
||
|
|
|
|
You may need to add sysutils to the uses clause, it is not built in and is optional according to Delphi in a nutshell. |
||
|
|
|
|
You are using SysUtils aren't you? Exception is declared in there IIRC. |
||
|
|