Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
class BankAccount extends Account {
  // ...
  @Override boolean overdraft() { // overrideOverride
    throw new IllegalAccessException();
  }
}

...