Re: Error Codes
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Error Codes
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: 2003年9月15日 18:22:20 -0300
>> LUA_ERRERR means an error during error handling.
>
>Ah, thanks. How should this be handled? What happens in the case of
>such a thing? I am writing to ada 95, and am mapping erros to
>exceptions. If this occurs, will Lua panic or will it be returned?
This means that your error handler raised an error. Apart from that, everything
is ok; the application can carry on.
>What do the lib loading functions do on error? They return ints, is it
>simply success or failure or do they return specific error codes?
What "lib loading functions"?
Do you mean loadlib? If so, see the comments in src/lib/loadlib.c.
--lhf