From 8d557215d8d12565af090f8fc15153ba390a5481 Mon Sep 17 00:00:00 2001 From: adam Date: Thu, 15 Apr 2004 23:30:06 +0000 Subject: [PATCH 1/1] more useful error messages darcs-hash:20040415233006-5007d-39fbee354ef00b62b2bf4b8d0f736ee0e8cc8456.gz --- src/org/ibex/graphics/Font.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/ibex/graphics/Font.java b/src/org/ibex/graphics/Font.java index 6df9899..2b8b13c 100644 --- a/src/org/ibex/graphics/Font.java +++ b/src/org/ibex/graphics/Font.java @@ -121,7 +121,7 @@ public class Font { try { rt = (Runtime)Class.forName("org.ibex.util.MIPSApps").newInstance(); } catch(Exception e) { - throw new Error("Error instansiating freetype"); + throw new Error("Error instantiating freetype: " + e); } rt.start(new String[]{"freetype"}); rt.execute(); -- 1.7.10.4