| 438 | } |
| 439 | |
| 440 | void Internal::ThrowObjectNotInitialized(intptr stackOffset) |
| 441 | { |
| 442 | if (gClientPipeErrorFunc != NULL) |
| 443 | gClientPipeErrorFunc("Object not initialized", 0); |
| 444 | else if ((stackOffset != -1) && (::IsDebuggerPresent())) |
| 445 | { |
| 446 | SETUP_ERROR("Object not initialized", (int)(2 + stackOffset)); |
| 447 | BF_DEBUG_BREAK(); |
| 448 | } |
| 449 | |
| 450 | Internal_FatalError("Object not initialized"); |
| 451 | } |
| 452 | |
| 453 | void Internal::FatalError(bf::System::String* error, intptr stackOffset) |
| 454 | { |
nothing calls this directly
no test coverage detected