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** 


  [1]: http://codegearguru.com/video/030/TSuicide.html