Exercise Number: 3
Final Class
Scenario: You are designing a secure system where certain components (e.g., the encryption algorithm) must not be altered or extended.
Task:
- Create a final class
EncryptionAlgorithm
. - Attempt to create a subclass
CustomEncryptionAlgorithm
that extendsEncryptionAlgorithm
and observe the error. - Instantiate the
EncryptionAlgorithm
class and call a method to demonstrate its functionality.