IllegalArgumentExceptionIllegalArgumentException
A method receives an argument that is not valid for its expected range or format.
CloneNotSupportedExceptionThe clone() method is called on an object whose class does not implement Cloneable.
The class does not implement the Cloneable interface, which is required for the Object.clone() method to work. Without it, clone() throws this exception.
Implement the Cloneable interface on the class. Use copy constructors or factory methods instead of clone(). Implement deep copying manually if needed.
IllegalArgumentExceptionA method receives an argument that is not valid for its expected range or format.
ReadOnlyBufferExceptionA write operation is attempted on a read-only buffer.
CertificateExceptionA certificate-related error occurred during SSL/TLS operations.
UnsupportedOperationExceptionAn operation is not supported by the implementation.
OutOfMemoryErrorThe JVM has exhausted its available heap memory.
SSLHandshakeExceptionThe SSL/TLS handshake failed between client and server.