java.netexception

Java equivalent to .Net's NotSupportedException


Is there (not NotImplementedException, not supported).


Solution

  • 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