A method has both abstract and private modifiers. This is not allowed since private methods are accessible from within the class, but abstract methods are inherited from outside the class.
To correct this error
-
Remove either the abstract or private modifier from the method declaration.
See Also
Reference
abstract Modifierprivate Modifier
Concepts
Other Resources
JScript ReferenceClass-based Objects