I have a some simple Java code that looks similar to this in its structure:
abstract public class BaseClass { String someString; public BaseClass(Str
I had this error and fixed it by removing a thrown exception from beside the method to a try/catch block
For example: FROM:
public static HashMap getMap() throws SQLException { }
TO:
public static Hashmap getMap() { try{ }catch(SQLException) { } }