From 3b61fce97f73fdd821433be91c4fa164b887d797 Mon Sep 17 00:00:00 2001 From: Kevin Glynn Date: Sat, 29 Jan 2011 09:29:03 +0100 Subject: [PATCH] Exception -> Throwble now --- CS2JLibrary/src/RusticiSoftware/System/IDisposable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java b/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java index 40ff4ab..8c74b1f 100644 --- a/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java +++ b/CS2JLibrary/src/RusticiSoftware/System/IDisposable.java @@ -1,5 +1,5 @@ package RusticiSoftware.System; public interface IDisposable { - void Dispose() throws Exception; + void Dispose() throws Throwable; }