There is a good video on [exceptions in constructors & destructors][1]
It shows some nice examples such as:
var cds1 : TClientDataSet;
cds2 : TClientDataSet;
begin
cds1 := Nil;
cds2 := Nil;
try
cds1 := TClientDataSet.Create(nil);
cds2 := TClientDataSet.Create(nil);
///////////////////////////////////////////////////////////////////////
/// DO WHAT NEEDS TO BE DONE
///////////////////////////////////////////////////////////////////////
finally
freeandnil(cds2); //// what has if there in an error in the destructor of cds2
freeandnil(Cds1);
end;
end;
What has if there in an error in the destructor of cds2
**Cds1 will not be Destroyed**
EDIT
Another good resource is :
Jim McKeeth excellent video on [Delayed Exception Handling][2] in code range III were he talks about problems in handling exceptions in the finally block.
[1]: http://codegearguru.com/video/030/TSuicide.html
[2]: http://cc.codegear.com/item/26436