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; }