Java Class Libraries - Introduction to the WARNING FrameWork
Java Class Libraries - Introduction to the WARNING FrameWork
import warningframework.WarningFramework;
public class Main {
public static void main(String[] args) {
try {
int result = 10 / 0;
} catch (Exception e) {
WarningFramework.handleException(e);
}
}
}