程序员地瓜哥的小屋

Java中Error和Exception

2021-07-08  本文已影响0人  CodingDGSun

Error和Exception区别:

PantUML语法

A <|-- B //B继承A
C <|... D //D实现了C
@startuml

interface Serializable{
  }

class Throwable{
  }

class Exception{
  }

class Error{
  }

class IOError{
  }

abstract class VirtualMachineError{
  }

class AWTError{
  }

class StackOverflowError{
  }

class OutOfMemoryError{
  }

class IOException{
  }

class RuntimeException{
  }

class ReflectiveOperationException{
  }

class ClassNotFoundException{
  }

class EOFException{
  }

class FileNotFoundException{
  }

class ArithmeticException{
  }

class MissingResourceException{
  }

class NullPointerException{
  }

class IllegalArgumentException{
  }

class IndexOutOfBoundsException{
  }

class ArrayIndexOutOfBoundsException{
  }

class UnknownEntityException{
  }

class UnknownTypeException{
  }

Serializable <|.. Throwable

Throwable <|-- Exception
Throwable <|-- Error

Error <|-- IOError
Error <|-- VirtualMachineError
Error <|-- AWTError

VirtualMachineError <|-- StackOverflowError
VirtualMachineError <|-- OutOfMemoryError

Exception <|-- IOException
Exception <|-- RuntimeException
Exception <|-- ReflectiveOperationException

ReflectiveOperationException <|-- ClassNotFoundException

IOException <|-- EOFException
IOException <|-- FileNotFoundException

RuntimeException <|-- ArithmeticException
RuntimeException <|-- MissingResourceException
RuntimeException <|-- NullPointerException
RuntimeException <|-- IllegalArgumentException
RuntimeException <|-- IndexOutOfBoundsException
RuntimeException <|-- UnknownEntityException

UnknownEntityException <|-- UnknownTypeException

IndexOutOfBoundsException <|-- ArrayIndexOutOfBoundsException

@enduml

Java中异常类关系图,UML关系图如下所示

24_01
上一篇 下一篇

猜你喜欢

热点阅读