public class Safe{ String innhold; int kode; public Safe(String innhold, int kode){ this.innhold = innhold; this.kode = kode; } public String hentInnhold(int kode) throws MittUnntak{ if(this.kode != kode){ throw new MittUnntak("Feil kode!"); } return innhold; } }