I think I understand the
throw new error("this is an error");
but then what happens? I believe that tells the system that an error occured but if you want to alert the user to this, what is the point of the error() funtion?
try {
// something
} catch (IOException ioe) {
throw new Error( "Unable to access database");
}
where does the user get notified that something is wrong? If I want to just log the data then I could use Log.e() but would I also need the error()?





