Files
LNXSDK/Kha/Tools/macos_arm64/std/sys/thread/NoEventLoopException.hx
2026-05-21 20:15:16 -07:00

9 lines
254 B
Haxe

package sys.thread;
import haxe.Exception;
class NoEventLoopException extends Exception {
public function new(msg:String = 'Event loop is not available. Refer to sys.thread.Thread.runWithEventLoop.', ?previous:Exception) {
super(msg, previous);
}
}