mirror of
https://github.com/github/codeql.git
synced 2026-04-27 17:55:19 +02:00
Initial commit of Python queries and QL libraries.
This commit is contained in:
committed by
Mark Shannon
parent
90c75cd362
commit
5f58824d1b
9
python/ql/src/Exceptions/NotImplemented.py
Normal file
9
python/ql/src/Exceptions/NotImplemented.py
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
class Abstract(object):
|
||||
|
||||
def wrong(self):
|
||||
# Will raise a TypeError
|
||||
raise NotImplemented()
|
||||
|
||||
def right(self):
|
||||
raise NotImplementedError()
|
||||
Reference in New Issue
Block a user