зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 05:06:05 +02:00
34 строки
1.3 KiB
Plaintext
34 строки
1.3 KiB
Plaintext
2022
|
|
Devoxx - Subramaniam - Exception Handling in Functional and Reactive Programming of 2:29:17
|
|
https://www.youtube.com/watch?v=S5tLVsvbHBg
|
|
2021
|
|
https://bookflow.ru/sobesedovanie-po-java-isklyucheniya-exceptions-voprosy-i-otvety/
|
|
http://victorrentea.ro/blog/exception-handling-guide-in-java/
|
|
https://www.linkedin.com/learning/java-exception-handling/what-are-errors
|
|
Errors - are a subset of Throwables, indicating serious problem with an app
|
|
IOError
|
|
unrecoverable input/output error
|
|
serious issue with underlying FS
|
|
VirtualMachineError - running out of resources on JVM
|
|
- InternalError, UnknownError, OutOfMemoryError, StackOverflowError
|
|
|
|
Exceptions
|
|
Checked (at compile time)
|
|
IOException->FileNotFoundException
|
|
Unchecked (run-time)
|
|
NullPointerException
|
|
2020
|
|
https://javax0.wordpress.com/2020/05/13/all-you-wanted-to-know-about-throwable/
|
|
!!!
|
|
2019
|
|
https://dzone.com/articles/recovering-from-exceptions-in-locks
|
|
2018
|
|
https://habr.com/post/431586/
|
|
https://www.baeldung.com/java-exceptions
|
|
https://stackify.com/types-of-exceptions-java/
|
|
|
|
Thread.currentThread().getStackTrace()
|
|
|
|
Thread.setDefaultUncaughtExceptionHandler(
|
|
new ElasticsearchUncaughtExceptionHandler(() -> Node.NODE_NAME_SETTING.get(settings)));
|