exception handling Flashcards

1
Q

How do we classify errors based on their origin

A

New and bubbled-up

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are further distinction can you have for new and bubbled-up errors

A

Recoverable and non-recoverable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the 4 scenarios

A
  • New recoverable
  • Bubbled-up recoverable
  • New non-recoverable
  • Bubbled-up non-recoverable
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Example of New Recoverable error

A

LBYL
~~~
def add_song_to_db(song)
if song.year is None
song.year = ‘Unknown’
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Example of Bubbled-up recoverable error

A
def add_song_to_db(song):
    try:
        artist = get_artist_from_db(song.artist)
    except NotFound:
        add_artist_to_db(song.artist)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Example of new non-recoverable

A
def add_song_to_db(song):
    if song.name is None:
        raise ValueError('Song must have a name')
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Example of bubbled-up non-recoverable error

A
def get_new_song():
    song = get_song_from_user()
    add_song_to_db(song)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why is it ok to let errors bubble-up?

A

Separation of concerns. Let higher layers with more context decide how to handle errors. You may not even want to print as it’s not the layers job to concern itself with how output should be handled.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly