class ErrorBasico {

   int m() throws Exception {
       int i = 0;
       if (i==0) {
          throw new Exception();
       }
       return i;
   }
}