I have a static constructor like this:

File errorLog;
static this() {
    try {
        errorLog = File("./log/log.txt", "w");
    } catch(Throwable ex) {
        // STOP PROGRAM EXECUTION
    }
}

How would I stop the program execution when the opening of the file fails?

有帮助吗?

解决方案

Use core.runtime to terminate druntime http://dlang.org/phobos/core_runtime.html#.Runtime.terminate and exit from core.stdc.stdlib

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top