When must I use throws ISOException at the end of the declaration line?
Posted: Sat Dec 19, 2015 1:50 am
This is a process method declaration followed by throws ISOException.
Another process declaration line from the end of which I removed throws ISOException.
What is the difference between the two expression below? When must I use throws ISOException at the end of the declaration line?
Code: Select all
public void process(APDU apdu) throws ISOException
{
...
}
Another process declaration line from the end of which I removed throws ISOException.
Code: Select all
public void process(APDU apdu)
{
...
}
What is the difference between the two expression below? When must I use throws ISOException at the end of the declaration line?