...
This compliant solution overrides the overdraft()
method and throws an exception to prevent misuse of the overdraft feature.
Code Block | ||
---|---|---|
| ||
protected void overdraft() { // this method ia added at a later date throw new IllegalAccessException(); } |
...