1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

Exception -> Throwble now

This commit is contained in:
Kevin Glynn 2011-01-29 09:29:03 +01:00
parent a55b7d48e1
commit 3b61fce97f

View File

@ -1,5 +1,5 @@
package RusticiSoftware.System;
public interface IDisposable {
void Dispose() throws Exception;
void Dispose() throws Throwable;
}