The OpenD Programming Language

NonScriptCatchableException

A base class for exceptions that can never be caught by scripts; throwing it from a function called from a script is guaranteed to bubble all the way up to your interpret call.. (scripts can also never catch Error btw)

class NonScriptCatchableException : Exception {}

Members

Mixins

__anonymous
mixin basicExceptionCtors

Mixed In Members

From mixin basicExceptionCtors

this
this(string msg, string file, size_t line, Throwable next)
this
this(string msg, Throwable next, string file, size_t line)

Meta

History

Added on April 24, 2020 (v7.3.0)