Helpful Information
 
 
Category: Java and JSP
Suppressing Java Errors

Is there a way to suppress java errors in Internet Explorer?

Fix them.

In other words, not that I know of.

Yes, you can catch them or throw them. But if you code doesn't compile, you'll have to do what arnyinc says and just fix em.

to catch, use a try catch block
public class myClass () {
try {
//stuff to try
}
catch {
// stuff to catch
}
}

to throw an error,

public class myClass() throws IOException {
//do stuff here
}










privacy (GDPR)