Example

abstract class ClassA {
}


Solution
Prefix the abstract class name with the string "Abstract".

abstract class AbstractClassA {
}