When extending a class, the subclass must eventually call some constructor of the superclass (whether directly or chaining through other constructors it defines which ultimately call a constructor of the superclass). How you obtain the parameters is often done by implementing a constructor with the same parameters then passing them on with super.
BufferedImage(int width, int height, int imageType)
Is one of the constructors to BufferedImage(). Since you are extending it, you could supply this constructor.
FSImage(int width, int height, int imageType)
Then call super() which calls the constructor of the superclass:
FSImage(int width, int height, int imageType) {
super( width, height, imageType );
}
However it should be noted that as long as you call a valid super() constructor, your own constructor need not have the same signature. For example, the following would be a legitimate constructor:
FSImage() {
super( 100, 100, TYPE_INT_RGB );
}
If you do not define any constructors the compiler will by default call the no-argument, default constructor of the superclass. Since in this case, it does not exist you must call an existing constructor.