What is the Python equivalent of Java's UnsupportedOperationException?

erwaman

I'm looking at Python's built-in exceptions and wondering what the closest equivalent of Java's UnsupportedOperationException is. NotImplementedError is close but seems to suggest something slightly different. Should I be using RuntimeError or implementing my own Exception?

user2357112 supports Monica

The closest equivalent is to simply not implement the unsupported method. The resulting exception if you try to use the nonexistent method is an AttributeError.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What is the Python equivalent of Java's UnsupportedOperationException?

From Dev

What is the Java equivalent to Python's reduce function?

From Dev

Java equivalent to python's "with"

From Dev

What is the equivalent of python's _ in javascript?

From Dev

What is the Python equivalent of RequestConfig in Java?

From Java

What's the Kotlin equivalent of Java's String[]?

From Dev

What is Java's equivalent for Ruby's singleton

From Dev

What is Php's equivalent of Java's newInputStreamSupplier?

From Dev

What is Java's equivalent for Ruby's singleton

From Dev

What's the Perl equivalent of Python's enumerate?

From Dev

What's the Ruby equivalent of Python's defaultdict?

From Dev

What is python's equivalent of R's NA?

From Dev

What's the PHP equivalent of Python's locals()?

From Dev

What is python's equivalent of Matlab's ranksum?

From Dev

What's the PHP equivalent of Python's locals()?

From Dev

Python Equivalent of Java's 'Keystore'?

From Dev

Java equivalent for Python's toordinal()?

From Dev

java's getByte() equivalent in python

From Dev

java's getByte() equivalent in python

From Dev

What is Android's SharedPreferences equivalent in Java?

From Java

What is the equivalent of Java's final in C#?

From Dev

What is the java equivalent of VBA's "With" statement

From Dev

Android - What's the equivalent of "android:theme=" in Java?

From Dev

What is the java 8 equivalent to Guava's transformAndConcat?

From Dev

What is Scala's equivalent of java char[]?

From Dev

What is Scala's equivalent of java char[]?

From Dev

What is c# equivalent of Java's getAndSet

From Dev

What is the Python 3 equivalent of %s in strings?

From Dev

What is the bash equivalent of Python's all?

Related Related

HotTag

Archive