View source
class thx.error.AbstractMethod extends Error
Available on all platforms
AbstractMethod
extends Error
and it is intended to be used inside those methods
that are considered abstract. Abstract methods are methods that needs to be implemented
in a sub-class.
The error message brings the class name/method name that is abstract.
function abstractMethod() {
throw new AbstractMethod();
}