mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-24 23:22:29 +01:00
9 lines
263 B
JavaScript
9 lines
263 B
JavaScript
import { Player } from "./Player";
|
|
import { Gang } from "./Gang";
|
|
import { makeRuntimeRejectMsg } from "./NetscriptEvaluator";
|
|
|
|
export function unknownGangApiExceptionMessage(functionName, err) {
|
|
return `gang.${functionName}() failed with exception: ` + err;
|
|
}
|
|
|