Forgot to mention I’m using Win32. Are there any know issues?
On Wed, Nov 22, 2006 at 12:13:49AM +0100, Matthew Planchant wrote:
def primary_organisation_name
primary_organisation.name rescue nil
endOk. Thanks. What does this do?
it returns nil in case the expression before the ‘rescue’ raises an
exception.
Jens
–
webit! Gesellschaft für neue Medien mbH www.webit.de
Dipl.-Wirtschaftsingenieur Jens Krämer [email protected]
Schnorrstraße 76 Tel +49 351 46766 0
D-01069 Dresden Fax +49 351 46766 66
Jens K. wrote:
On Wed, Nov 22, 2006 at 12:13:49AM +0100, Matthew Planchant wrote:
def primary_organisation_name
primary_organisation.name rescue nil
endOk. Thanks. What does this do?
it returns nil in case the expression before the ‘rescue’ raises an
exception.
Ah I see. Thanks for the explanation.
Is there a way of catching the exception here:
def organisation_names
organisations.collect { |organisation| organisation.name }.join ’ ’
end
I take it you have no experience of the rebuild ending prematurely?