LNXSDK/Kha/Tools/macos/std/sys/thread/NoEventLoopException.hx
2025-01-22 16:18:30 +01: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);
}
}