I am getting this error when i m trying to get list of data from table by calling constructor from another class, my main file is
Account.java
try{
List<PersonalInformation> temp = helper.findAll();
Toast.makeText(getApplicationContext(), temp.size(), Toast.LENGTH_LONG).show();
}
catch (Exception e) {
Toast.makeText(getApplicationContext(), e+"", Toast.LENGTH_LONG).show();
}