Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top