diff options
author | Adam NAILI | 2018-04-02 16:14:45 +0200 |
---|---|---|
committer | Adam NAILI | 2018-04-02 16:14:45 +0200 |
commit | 3dc844c1dfea604bc43890794a5cbc4c5fdef89d (patch) | |
tree | 3599db4a41125f3934d2d9ebc7aa6eaed2a9aaab /pageexception.py | |
parent | 0441d28435e8db1d60c1ae30c81e3a54f12149c8 (diff) | |
download | mempager-simulator-3dc844c1dfea604bc43890794a5cbc4c5fdef89d.tar.gz |
PageException created and LRU,Second Chance Handling
Diffstat (limited to 'pageexception.py')
-rw-r--r-- | pageexception.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pageexception.py b/pageexception.py new file mode 100644 index 0000000..9a1519d --- /dev/null +++ b/pageexception.py | |||
@@ -0,0 +1,3 @@ | |||
1 | class PageException(Exception): | ||
2 | def __init__(self): | ||
3 | super().__init__() | ||