top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is UnsupportedOperationException in java?

0 votes
287 views
What is UnsupportedOperationException in java?
posted Aug 11, 2017 by Sandeep Jain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

UnsupportedOperationException is the exception used to indicate that the operation is not supported. It’s used extensively in JDK classes, in collections framework java.util.Collections.UnmodifiableCollection throws this exception for all add and remove operations.

answer Aug 17, 2017 by Neeraj Kumar
...