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
-
Remove the abstract modifier from the class.
-
Define a class that extends the abstract class and provides an implementation for each of the abstract methods and properties.
-
Do not attempt to instantiate an abstract class.