VMCompiler.java (static block): Also catch BufferUnderflowException.

* java/lang/VMCompiler.java (static block): Also catch
	BufferUnderflowException.

From-SVN: r96832
This commit is contained in:
Tom Tromey 2005-03-21 20:59:18 +00:00 committed by Tom Tromey
parent 6ec4845e26
commit 1ccc1c82d8
2 changed files with 9 additions and 0 deletions

View file

@ -141,6 +141,10 @@ final class VMCompiler
catch (java.io.IOException _)
{
}
catch (java.nio.BufferUnderflowException _)
{
// Invalid map file.
}
}
}
}