// Fehlerbehandlung 2: Fehlerfang
// Walter Herglotz 2000

import java.lang.*;

class fehler2
{
public static void main (String args[] )
  {
  int [] intarray = new int[10];
  int i;
  try
    {
     for (i=0; i <= 10; i++)
	intarray[i]= i;
    }
  catch (Exception e)
     {
     System.out.println("Fehler gefunden und behandelt!");
    }
  }
}
