ripper234
ripper234

Reputation: 229988

Java equivalent to .Net's NotSupportedException

Is there (not NotImplementedException, not supported).

Upvotes: 69

Views: 20216

Answers (2)

Thilo
Thilo

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

user121803
user121803

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

Related Questions