Thread overview
[enhancement] Another error code for std.syserror
Jan 27, 2005
Matthew
Jan 27, 2005
Regan Heath
Jan 28, 2005
Matthew
Jan 28, 2005
Regan Heath
Jan 28, 2005
Matthew
January 27, 2005
     case 123: result = "invalid name"; break;


January 27, 2005
On Fri, 28 Jan 2005 10:03:23 +1100, Matthew <admin@stlsoft.dot.dot.dot.dot.org> wrote:
>      case 123: result = "invalid name"; break;

Or instead of adding errors as you find them you could simply use the
attached code.
Regan


January 28, 2005
"Regan Heath" <regan@netwin.co.nz> wrote in message news:opslacfpe123k2f5@ally...
> On Fri, 28 Jan 2005 10:03:23 +1100, Matthew <admin@stlsoft.dot.dot.dot.dot.org> wrote:
>>      case 123: result = "invalid name"; break;
>
> Or instead of adding errors as you find them you could simply use the attached code.

Sure, but what about ERROR_NOT_ENOUGH_MEMORY?



January 28, 2005
On Fri, 28 Jan 2005 11:31:09 +1100, Matthew <admin@stlsoft.dot.dot.dot.dot.org> wrote:
> "Regan Heath" <regan@netwin.co.nz> wrote in message news:opslacfpe123k2f5@ally...
>> On Fri, 28 Jan 2005 10:03:23 +1100, Matthew <admin@stlsoft.dot.dot.dot.dot.org> wrote:
>>>      case 123: result = "invalid name"; break;
>>
>> Or instead of adding errors as you find them you could simply use the attached code.
>
> Sure, but what about ERROR_NOT_ENOUGH_MEMORY?

Good point. We can simply add a special case static string for that, right? Attached.

Regan


January 28, 2005
"Regan Heath" <regan@netwin.co.nz> wrote in message news:opslae9qfh23k2f5@ally...
> On Fri, 28 Jan 2005 11:31:09 +1100, Matthew <admin@stlsoft.dot.dot.dot.dot.org> wrote:
>> "Regan Heath" <regan@netwin.co.nz> wrote in message news:opslacfpe123k2f5@ally...
>>> On Fri, 28 Jan 2005 10:03:23 +1100, Matthew <admin@stlsoft.dot.dot.dot.dot.org> wrote:
>>>>      case 123: result = "invalid name"; break;
>>>
>>> Or instead of adding errors as you find them you could simply use
>>> the
>>> attached code.
>>
>> Sure, but what about ERROR_NOT_ENOUGH_MEMORY?
>
> Good point. We can simply add a special case static string for that,
> right?
> Attached.

Agreed. :-)