---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
direction TB
Throwable <|-- Error
Throwable <|-- Exception
Exception <|-- IOException
Exception <|-- SQLException
Exception <|-- RuntimeException
RuntimeException <|-- NullPointerException
RuntimeException <|-- ArithmeticException
RuntimeException <|-- NumberFormatException
class Throwable {
}
class Error {
回復不可能なエラー
}
class Exception {
回復可能な例外
}
class RuntimeException:::restyle {
例外処理不要な例外
}
class IOException {
}
class ArithmeticException:::restyle
class NullPointerException:::restyle
class NumberFormatException:::restyle
classDef restyle fill:#99ff99;