View source

class thx.error.NotImplemented extends Error

Available on all platforms

NotImplemented extends Error and it is intended to be used inside method that are drafted but still do not provide an implementation.

public function toBeDone() {
  throw new NotImplemented();
}

Instance Fields

Toggle inherited fields

var message(default,null):String

defined by Error

Available on cpp, cs, java, neko, php, python, swf

The text message associated with the error.

function new(?posInfo:PosInfos):Void

var pos(default,null):PosInfos

defined by Error

The location in code where the error has been instantiated.

var stackItems(default,null):Array<StackItem>

defined by Error

The collected error stack.

function toString():String

defined by Error