Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wwwanlingxiao
system-design-primer
Commits
e50f2696
"...src/main/resources/template/admin/Controller.ftl" did not exist on "203c1d692c4f1b337d1fcf6159000a23221935c0"
Commit
e50f2696
authored
Dec 27, 2019
by
Christian Clauss
Committed by
Donne Martin
Dec 26, 2019
Browse files
Change raise NotImplemented to raise NotImplementedError (#345)
parent
eaa447cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
solutions/object_oriented_design/call_center/call_center.py
View file @
e50f2696
...
...
@@ -66,7 +66,7 @@ class Director(Employee):
super
(
Operator
,
self
).
__init__
(
employee_id
,
name
,
Rank
.
DIRECTOR
)
def
escalate_call
(
self
):
raise
NotImplemented
(
'Directors must be able to handle any call'
)
raise
NotImplemented
Error
(
'Directors must be able to handle any call'
)
class
CallState
(
Enum
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment