up vote 5 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

4 Answers

up vote 27 down vote accepted

The exception class "Exception" is declared in the unit SysUtils. So you must add "SysUtils" to your uses-clause.

uses
  SysUtils;

procedure RaiseMyException;
begin
  raise Exception.Create('Hallo World!');
end;
link|improve this answer
2  
For future reference, "undeclared identifier" errors can frequently be solved by searching the included source code for the identifier you're interested in. That will tell you where it's declared, and it might also provide examples of how to use it. – Rob Kennedy Jul 13 '09 at 14:32
6  
In D2006+ (maybe 2005?) you can use the "Refactoring -> Find Unit" option from the right-click menu to add the required unit to your uses clause. – Gerry Coll Jul 13 '09 at 21:13
Gerry - fabulous added tip there!... I'm embarrassed to say, I've never noticed that feature. Very cool. : ) – Jamo Jul 13 '09 at 22:50
feedback

You may need to add sysutils to the uses clause, it is not built in and is optional according to Delphi in a nutshell.

link|improve this answer
feedback

You are using SysUtils aren't you? Exception is declared in there IIRC.

link|improve this answer
feedback

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:

Type TMyException=class
public
  class procedure RaiseError1(param:integer);
  class procedure RaiseError2(param1,param2:integer);
  class procedure RaiseError3(param:string);
end;

implementation

class procedure TMyException.RaiseError1(param:integer);
begin
  raise Exception.create(format('This is an exception with param %d',[param]));
end;

//declare here other RaiseErrorX

A simple way of using this is:

TMyException.RaiseError1(123);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.