Failing to locate a class is apparently a RuntimeException even if you do
it through Class.forName(). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2755 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: FrameManager.java,v 1.45 2003/08/08 21:41:10 mdb Exp $
|
// $Id: FrameManager.java,v 1.46 2003/08/08 23:55:06 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.media;
|
package com.threerings.media;
|
||||||
|
|
||||||
@@ -112,8 +112,8 @@ public abstract class FrameManager
|
|||||||
MediaTimer timer = null;
|
MediaTimer timer = null;
|
||||||
try {
|
try {
|
||||||
timer = (MediaTimer)Class.forName(PERF_TIMER).newInstance();
|
timer = (MediaTimer)Class.forName(PERF_TIMER).newInstance();
|
||||||
} catch (Exception e) {
|
} catch (Throwable t) {
|
||||||
Log.info("Can't use PerfTimer (" + e + ") reverting to " +
|
Log.info("Can't use PerfTimer (" + t + ") reverting to " +
|
||||||
"System.currentTimeMillis() based timer.");
|
"System.currentTimeMillis() based timer.");
|
||||||
timer = new SystemMediaTimer();
|
timer = new SystemMediaTimer();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user