NoEventLoopException.hx 254 B

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