blob: 8c95b955e075868e36c06cd8c5f9a75de40b8160 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python3
# UPEM / System programming / Project: Memory paging simulator
# Pacien TRAN-GIRARD, Adam NAILI
class PageException(Exception):
def __init__(self):
super().__init__()
|