From: | Andrew Markwell |
Date: | 26 Aug 99 at 23:42:39 |
Subject: | Re: ExecBase & 'RESET:starting PC' exception |
From: Andrew Markwell <andrewmarkwell@ukonline.co.uk>
On 27-Aug-99 did write:
> From: Ben Hutchings <womble@zzumbouk.demon.co.uk>
>
> On Thu, Aug 26, 1999 at 03:28:18PM +0000, andrewmarkwell@ukonline.co.uk wrote:
> <snip>
>> You can use exceptions like this:
>>
>> void main(void)
>
> *sigh*
>
>> {
>> try
>> {
>> blahblah=somecode();
>> if(!blahblah)
>> throw "something went wrong";
>> }
>> catch(char *error)
>> {
>> cout << error;
>> }
>> }
>
> You should use const char * here, not char *.
>
er, why?