interface
| 4540 | |
| 4541 | // interface |
| 4542 | int asCContext::SetException(const char *descr, bool allowCatch) |
| 4543 | { |
| 4544 | // Only allow this if we're executing a CALL byte code |
| 4545 | if( m_callingSystemFunction == 0 ) return asERROR; |
| 4546 | |
| 4547 | SetInternalException(descr, allowCatch); |
| 4548 | |
| 4549 | return 0; |
| 4550 | } |
| 4551 | |
| 4552 | void asCContext::SetInternalException(const char *descr, bool allowCatch) |
| 4553 | { |
no outgoing calls
no test coverage detected