Skip to content

Instantly share code, notes, and snippets.

@AAlsafri
Created January 21, 2024 03:59
Show Gist options
  • Save AAlsafri/4325dbde5779c5c586301fb68a8f00c2 to your computer and use it in GitHub Desktop.
Save AAlsafri/4325dbde5779c5c586301fb68a8f00c2 to your computer and use it in GitHub Desktop.
Creating Exceptions
@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