Java 异常致命
ExceptionInInitializerErrorExceptionInInitializerError
An exception is thrown during the execution of a static initializer block.
jvmandroid
查看详情 RejectedExecutionExceptionA task cannot be accepted by the executor for execution.
The executor's queue is full, the executor has been shut down, or the rejection policy rejected the task. This commonly happens when submitting tasks after calling shutdown().
Check if the executor is shut down. Increase the queue capacity. Use CallerRunsPolicy as the rejection handler. Implement backpressure or throttling.
ExceptionInInitializerErrorAn exception is thrown during the execution of a static initializer block.
EOFExceptionEnd of file or stream is reached unexpectedly.
EmptyStackExceptionAn operation is attempted on an empty Stack.
InterruptedExceptionA thread is interrupted while it is waiting, sleeping, or blocked.
OutOfMemoryErrorThe JVM has exhausted its available heap memory.
NumberFormatExceptionA string cannot be parsed as a number.