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?

