class UtaforListeIndex extends RuntimeException{
public UtaforListeIndex(int pos, int max){
super("Listeindex var " + pos + " men listen har bare plass til " + max);
}
}
class FullListe extends RuntimeException{
public FullListe(int max){
super("Kan ikke legge til flere elementer. Maks listestoerrelse er " + max);
}
}