InterviewSolution
Saved Bookmarks
| 1. |
What Do You Understand By Unsupportedoperationexception? |
|
Answer» The UNSUPPORTEDOPERATIONEXCEPTION is the exception; it is used for INDICATING that the operation is not supported. It is ALSO used extensively in JDK classes, in COLLECTION Framework, java.util.collections.UnmodifiableCollection by this exception for all add or remove operations. The UnsupportedOperationException is the exception; it is used for indicating that the operation is not supported. It is also used extensively in JDK classes, in Collection Framework, java.util.collections.UnmodifiableCollection by this exception for all add or remove operations. |
|