JS1214: It is not possible to construct an instance of an abstract class

The code attempts to construct an instance of an abstract class with the new operator. Classes marked with the abstract modifier cannot be instantiated.

To correct this error

  1. Remove the abstract modifier from the class.

  2. Define a class that extends the abstract class and provides an implementation for each of the abstract methods and properties.

  3. Do not attempt to instantiate an abstract class.

See Also

Concepts

Troubleshooting Your Scripts

Other Resources

JScript Reference