Reputation: 229988
Is there (not NotImplementedException
, not supported).
Upvotes: 69
Views: 20216
Reputation: 262474
java.lang.UnsupportedOperationException
Or, if you use Apache Commons Lang and the operation should be supported, but has not been implemented (yet?):
org.apache.commons.lang.NotImplementedException
Upvotes: 97
Reputation: 177
You can use either UnsupportedOperationException or NoSuchMethodException or extend the Exception class and create your own custom exception called NotImplementedException or whatever
Upvotes: 1