This sounds great.
So I am writing a class verifies conditions, and dies when conditions
are not met.
How do I attach a default CATCH to all methods in the class.
Or do I need to define my own Exception.
On 04/09/18 04:48, Curt Tilmes wrote:
On Mon, Sep 3, 2018 at 4:28 PM Parrot Raiser <1parr...@gmail.com
<mailto:1parr...@gmail.com>> wrote:
If I understand that correctly, "die" needs to be documented as always
outputting the line number, and that for user-oriented messages, one
of the other techniques should be used.
die throws the Exception -- you can CATCH it and handle it how you
like, including printing the message without line numbers.
(Or, for example, print the backtrace during development, but a
simpler error message in operations).