As Sagar mentioned, the problem is that in the BLBeck constructor, an implicit call to super is being made, but since the super constructor Vict() is not visible, to avoid a compilation error, you must either make it visible by changing its access control level to default, protected or coderanch, OR by explicitly invoking another constructor.
Mihai Fonoage