Created
January 21, 2024 03:59
-
-
Save AAlsafri/4325dbde5779c5c586301fb68a8f00c2 to your computer and use it in GitHub Desktop.
Creating Exceptions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
class AtaBaseException { | |
#message: String | |
+AtaBaseException(message: String) | |
} | |
class AtaInvalidProfileParameterException { | |
+AtaInvalidProfileParameterException(message: String) | |
} | |
AtaBaseException <|-- AtaInvalidProfileParameterException | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment