class Sjafor extends Person{ public Sjafor(String navn,int alder){ super(alder, navn); if (alder < 18){ throw new IllegalArgumentException(); } } }