Question
I notice that in
TWikiFuncDotPm that
throw TWiki::OopsException($web, $topic, undef, 0, [ 'I made a boo-boo' ]);
is recommended. Is
TWiki::!OopsException an official part of the API?
Environment
--
MeredithLesly - 18 May 2006
Answer
If you answer a question - or have a question you asked answered by someone - please remember to edit the page and set the status to answered. The status is in a drop-down list below the edit box.
No, it isn't. But if you are used to exceptions and exception handling, it's the only sensible thing to do. The doc should be changed so it isn't a reccomendation, only an option.
--
CrawfordCurrie - 22 May 2006
Also note that this is NOT the correct syntax in 4.0.1.
Something like this is what actually works:
throw TWiki::OopsException( 'attention',
def => 'save_error',
web => $web,
topic => $topic,
params => ["param1"] );
--
JadeCravy - 29 May 2006