| 102 | |
| 103 | |
| 104 | void ERR_soft_bugcheck(int number, const TEXT* file, int line) |
| 105 | { |
| 106 | /************************************** |
| 107 | * |
| 108 | * E R R _ s o f t _ b u g c h e c k |
| 109 | * |
| 110 | ************************************** |
| 111 | * |
| 112 | * Functional description |
| 113 | * Things seem to be going poorly today. |
| 114 | * Use this function instead of ERR_bugcheck in bugcheck conditions that do not affect |
| 115 | * whole server/database/attachment state. |
| 116 | * |
| 117 | **************************************/ |
| 118 | |
| 119 | fb_assert(false); |
| 120 | internal_error(isc_bug_check, number, file, line); |
| 121 | } |
| 122 | |
| 123 | |
| 124 | void ERR_corrupt(int number) |
nothing calls this directly
no test coverage detected